##// 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 126 def __init__(self, *args, **kw):
127 127 timestamp = None
128 128 if 'timestamp' in kw:
129 timestamp = kw.pop('timestamp')
129 timestamp = kw.pop(r'timestamp')
130 130 if timestamp is None:
131 131 self.timestamp = time.time()
132 132 else:
General Comments 0
You need to be logged in to leave comments. Login now