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

rpcserver: white space tweaks

Changeset d1dc0a6efe79

Parent c31cd0e444b2

by Adrian Buehlmann

Changes to one file · Browse files at d1dc0a6efe79 Showing diff from parent c31cd0e444b2 Diff from another changeset...

 
1
2
3
 
4
5
 
6
7
 
8
9
10
 
20
21
22
 
23
24
25
 
54
55
56
57
 
58
59
60
 
178
179
180
181
182
 
1
2
3
4
5
6
7
8
9
10
11
12
13
 
23
24
25
26
27
28
29
 
58
59
60
 
61
62
63
64
 
182
183
184
 
185
@@ -1,10 +1,13 @@
 import os  import win32api  import win32con +  from win32com.shell import shell, shellcon  import _winreg +  from mercurial import hg, cmdutil, util  from mercurial import repo as _repo +  from thgutil import paths, shlib    import sys @@ -20,6 +23,7 @@
 import pywintypes  import winerror   +  PIPENAME = "\\\\.\\pipe\\TortoiseHgRpcServer-bc0c27107423"  PIPEBUFSIZE = 4096   @@ -54,7 +58,7 @@
 requests = Queue.Queue(0)    class Updater(threading.Thread): - def run(self ): + def run(self):   n = 0   while True:   batch = [] @@ -178,5 +182,4 @@
  print "%s = %s" % (path, status)   else:   print "usage:\n%s [--server|--client]" % sys.argv[0] -