Skip to content
Snippets Groups Projects
Commit 79035ff3 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Update how encode is called for python2 compat

parent e13c463b
No related branches found
No related tags found
No related merge requests found
......@@ -133,10 +133,10 @@ class RawInputClient():
the correct length. We only expect observatory to ever be of an
incorrect length.
"""
return str.encode(network +
return str(network +
observatory.ljust(5) +
channel +
location)
location).encode()
def forceout(self):
""" force edge to recognize data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment