##// END OF EJS Templates
archival: fix a missing r'' on a kwargs check...
Augie Fackler -
r36744:009da8c2 default
parent child Browse files
Show More
@@ -125,7 +125,7 b' class tarit(object):'
125
125
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 r'timestamp' in kw:
129 timestamp = kw.pop(r'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()
General Comments 0
You need to be logged in to leave comments. Login now