Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

rpcserver: fixed wrong var in print

Changeset 66f6add7322d

Parent 9231a2675b03

by Adrian Buehlmann

Changes to one file · Browse files at 66f6add7322d Showing diff from parent 9231a2675b03 Diff from another changeset...

 
73
74
75
76
 
77
78
79
 
73
74
75
 
76
77
78
79
@@ -73,7 +73,7 @@
  s = req.split('|')   cmd, args = s[0], s[1:]   if cmd == 'update': - print "got update request %s" % r + print "got update request %s" % req   batch.append(args[0])   else:   deferred_requests.append(req)