##// END OF EJS Templates
py3: use "%d" for integers instead of "%s"...
Pulkit Goyal -
r36407:469c7e14 default
parent child Browse files
Show More
@@ -1265,7 +1265,7 class queue(object):
1265 1265 if user:
1266 1266 ph.setuser(user)
1267 1267 if date:
1268 ph.setdate('%s %s' % date)
1268 ph.setdate('%d %d' % date)
1269 1269 ph.setparent(hex(nctx.p1().node()))
1270 1270 msg = nctx.description().strip()
1271 1271 if msg == defaultmsg.strip():
General Comments 0
You need to be logged in to leave comments. Login now