diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-07 10:52:27 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-03-07 10:53:04 +0100 |
| commit | 309bf16257b2395ce502017be627186b749ee749 (patch) | |
| tree | 20e5271f88cc8afed90f7ab86146e84407f5523c /contrib/devtools/github-merge.py | |
| parent | Merge #9932: Fix verify-commits on travis and always check top commit's tree (diff) | |
| download | discoin-309bf16257b2395ce502017be627186b749ee749.tar.xz discoin-309bf16257b2395ce502017be627186b749ee749.zip | |
devtools: Fix a syntax error typo
Fix a typo introduced in #9880 causing the script to not even parse.
Diffstat (limited to 'contrib/devtools/github-merge.py')
| -rwxr-xr-x | contrib/devtools/github-merge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/github-merge.py b/contrib/devtools/github-merge.py index 933bdc2b9..f1b6a12fd 100755 --- a/contrib/devtools/github-merge.py +++ b/contrib/devtools/github-merge.py @@ -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) |