mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-11 03:53:22 +02:00
devtools: Fix a syntax error typo
Fix a typo introduced in #9880 causing the script to not even parse.
This commit is contained in:
@@ -209,7 +209,7 @@ def main():
|
|||||||
exit(4)
|
exit(4)
|
||||||
|
|
||||||
symlink_files = get_symlink_files()
|
symlink_files = get_symlink_files()
|
||||||
for f in symlink_files;
|
for f in symlink_files:
|
||||||
print("ERROR: File %s was a symlink" % f)
|
print("ERROR: File %s was a symlink" % f)
|
||||||
if len(symlink_files) > 0:
|
if len(symlink_files) > 0:
|
||||||
exit(4)
|
exit(4)
|
||||||
|
Reference in New Issue
Block a user