remote: Remove unused type variable.

This commit is contained in:
Martin Hostettler 2016-11-15 23:18:21 +01:00
parent 1edff44b3d
commit f37109848f
1 changed files with 4 additions and 2 deletions

View File

@ -175,7 +175,8 @@ class RepositoryServer: # pragma: no cover
args = decode_keys(unpacked[ARGS])
elif isinstance(unpacked, tuple) and len(unpacked) == 4:
dictFormat = False
type, msgid, method, args = unpacked
# The first field 'type' was always 1 and has always been ignored
_, msgid, method, args = unpacked
method = method.decode()
args = self.positional_to_named(method, args)
else:
@ -664,7 +665,8 @@ This problem will go away as soon as the server has been upgraded to 1.0.7+.
if isinstance(unpacked, dict):
msgid = unpacked[MSGID]
elif isinstance(unpacked, tuple) and len(unpacked) == 4:
type, msgid, error, res = unpacked
# The first field 'type' was always 1 and has always been ignored
_, msgid, error, res = unpacked
if error:
# ignore res, because it is only a fixed string anyway.
unpacked = {MSGID: msgid, b'exception_class': error}