aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgithook.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/githook.py b/githook.py
index 47a87e9..5dd8497 100755
--- a/githook.py
+++ b/githook.py
@@ -41,7 +41,10 @@ if __name__ == "__main__":
repo = repos[reponame]
# parse the information we get from stdin. we trust this information.
for line in sys.stdin:
- (oldsha, newsha, ref) = line.split()
+ line = line.split()
+ if len(line) == 0: continue
+ assert len(line) == 3
+ (oldsha, newsha, ref) = line
repo.update_mirrors(ref, oldsha, newsha)
except Exception as e:
if repo is not None: