projects
/
invirt/scripts/git-migration.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Typo in catching blank lines.
[invirt/scripts/git-migration.git]
/
git-migrate
diff --git
a/git-migrate
b/git-migrate
index
e61f380
..
65c7a12
100755
(executable)
--- a/
git-migrate
+++ b/
git-migrate
@@
-84,7
+84,7
@@
def mergeHistories():
merges = []
for line in open('merges'):
line = line.strip()
- if line[0] == '#' or line == '':
+ if line == '' or line[0] == '#':
continue
merges.append(line.split())