Skip to content

Commit

Permalink
fixed bug in git2changes script
Browse files Browse the repository at this point in the history
  • Loading branch information
rieck committed Nov 18, 2014
1 parent bafad3a commit 7eda9f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions git2changes.py
Expand Up @@ -66,7 +66,7 @@
else:
message = message + " " + line.strip()
# If this line is hit all of the files have been stored for this commit
elif re.search('files changed', line) >= 0:
elif re.search('files? changed', line) >= 0:
filesFound = True
continue
# Collect the files for this commit. FIXME: Still need to add +/- to files
Expand Down Expand Up @@ -122,4 +122,3 @@
# Close the input and output lines now that we are finished.
fin.close()
fout.close()

0 comments on commit 7eda9f8

Please sign in to comment.