a pass on some explicit encode calls that are obviously wrong in python3; some may...
[plcapi.git] / PLC / Methods / GetBootMedium.py
index 00a4ea9..d9fc671 100644 (file)
@@ -46,7 +46,6 @@ def compute_key():
     # Base64 encode their string representation
     key = base64.b64encode(bytes(int8s))
     # Boot Manager cannot handle = in the key
-    # XXX this sounds wrong, as it might prevent proper decoding
     key = key.replace(b"=", b"")
     return key