mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Added missing parentheses
This commit is contained in:
parent
cdb460d36d
commit
d82d9984d8
@ -78,9 +78,9 @@ def check_privates(filepath):
|
||||
missing.append(s)
|
||||
|
||||
if len(missing) > 0:
|
||||
print filepath
|
||||
print (filepath)
|
||||
for bad_priv in missing:
|
||||
print '\t' + bad_priv
|
||||
print ('\t' + bad_priv)
|
||||
|
||||
def main():
|
||||
|
||||
@ -102,4 +102,4 @@ def main():
|
||||
check_privates(filename)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
||||
|
Loading…
Reference in New Issue
Block a user