##// END OF EJS Templates
factotum: use try/except/finally
Matt Mackall -
r25078:e8348f1c default
parent child Browse files
Show More
@@ -67,7 +67,6 b' def auth_getuserpasswd(self, getkey, par'
67 while True:
67 while True:
68 fd = os.open('%s/rpc' % _mountpoint, os.O_RDWR)
68 fd = os.open('%s/rpc' % _mountpoint, os.O_RDWR)
69 try:
69 try:
70 try:
71 os.write(fd, 'start %s' % params)
70 os.write(fd, 'start %s' % params)
72 l = os.read(fd, ERRMAX).split()
71 l = os.read(fd, ERRMAX).split()
73 if l[0] == 'ok':
72 if l[0] == 'ok':
General Comments 0
You need to be logged in to leave comments. Login now