diff --git a/deluge/xmlrpclib.py b/deluge/xmlrpclib.py index 9305e1018..5bd6171a4 100644 --- a/deluge/xmlrpclib.py +++ b/deluge/xmlrpclib.py @@ -657,8 +657,8 @@ class Marshaller: dispatch[bool] = dump_bool def dump_long(self, value, write): - if value > MAXINT or value < MININT: - raise OverflowError, "long int exceeds XML-RPC limits" + #if value > MAXINT or value < MININT: + # raise OverflowError, "long int exceeds XML-RPC limits" write("") write(str(int(value))) write("\n")