##// 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 634 if 'repo_size' in extras['hooks']:
635 635 try:
636 636 _call_hook('repo_size', extras, GitMessageWriter())
637 except:
637 except Exception:
638 638 pass
639 639
640 640 return _call_hook('post_push', extras, GitMessageWriter())
@@ -114,7 +114,7 b' class InputStreamChunker(threading.Threa'
114 114 # go of the input because, if successful, .close() will send EOF
115 115 # down the pipe.
116 116 self.source.close()
117 except:
117 except Exception:
118 118 pass
119 119
120 120 def run(self):
@@ -18,8 +18,6 b''
18 18 import time
19 19 import logging
20 20
21 import msgpack
22
23 21 import vcsserver
24 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