1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

hotfix: fix syntax error in version-info.py

This commit is contained in:
Philippe Renon 2016-01-24 14:19:21 +01:00
parent 85e2ff40f6
commit 9d753905d1

View File

@ -359,7 +359,7 @@ def get_hash_of_dirs(directory, verbose = 0, raw = 0, n = 40):
files.sort()
for names in files:
if names.endswith('.xml')
if names.endswith('.xml'):
if verbose == 1:
print 'Hashing', names
filepath = os.path.join(root, names)