##// END OF EJS Templates
linting
super-admin -
r1095:268c6aa4 python3
parent child Browse files
Show More
@@ -634,7 +634,7 b' def git_post_receive(unused_repo_path, r'
634 if 'repo_size' in extras['hooks']:
634 if 'repo_size' in extras['hooks']:
635 try:
635 try:
636 _call_hook('repo_size', extras, GitMessageWriter())
636 _call_hook('repo_size', extras, GitMessageWriter())
637 except:
637 except Exception:
638 pass
638 pass
639
639
640 return _call_hook('post_push', extras, GitMessageWriter())
640 return _call_hook('post_push', extras, GitMessageWriter())
@@ -114,7 +114,7 b' class InputStreamChunker(threading.Threa'
114 # go of the input because, if successful, .close() will send EOF
114 # go of the input because, if successful, .close() will send EOF
115 # down the pipe.
115 # down the pipe.
116 self.source.close()
116 self.source.close()
117 except:
117 except Exception:
118 pass
118 pass
119
119
120 def run(self):
120 def run(self):
@@ -18,8 +18,6 b''
18 import time
18 import time
19 import logging
19 import logging
20
20
21 import msgpack
22
23 import vcsserver
21 import vcsserver
24 from vcsserver.str_utils import safe_str, ascii_str
22 from vcsserver.str_utils import safe_str, ascii_str
25
23
General Comments 0
You need to be logged in to leave comments. Login now