Skip to content

Commit

Permalink
devtools: Fix a syntax error typo
Browse files Browse the repository at this point in the history
Fix a typo introduced in bitcoin#9880 causing the script to not even parse.
  • Loading branch information
laanwj authored and PastaPastaPasta committed Feb 5, 2019
1 parent 8a436ec commit 9c8c12e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/devtools/github-merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def main():
exit(4)

symlink_files = get_symlink_files()
for f in symlink_files;
for f in symlink_files:
print("ERROR: File %s was a symlink" % f)
if len(symlink_files) > 0:
exit(4)
Expand Down

0 comments on commit 9c8c12e

Please sign in to comment.