##// END OF EJS Templates
py3: handle keyword arguments correctly in archival.py...
Pulkit Goyal -
r35350:a274c4b6 default
parent child Browse files
Show More
@@ -126,7 +126,7 b' class tarit(object):'
126 def __init__(self, *args, **kw):
126 def __init__(self, *args, **kw):
127 timestamp = None
127 timestamp = None
128 if 'timestamp' in kw:
128 if 'timestamp' in kw:
129 timestamp = kw.pop('timestamp')
129 timestamp = kw.pop(r'timestamp')
130 if timestamp is None:
130 if timestamp is None:
131 self.timestamp = time.time()
131 self.timestamp = time.time()
132 else:
132 else:
General Comments 0
You need to be logged in to leave comments. Login now