Change print-function to have brackets

This commit is contained in:
NeroBurner 2015-09-16 22:44:41 +02:00 committed by Daniel Martí
parent 967472408b
commit af38f151a2
4 changed files with 9 additions and 9 deletions

View file

@ -1949,7 +1949,7 @@ def get_per_app_repos():
repos = []
for root, dirs, files in os.walk(os.getcwd()):
for d in dirs:
print 'checking', root, 'for', d
print('checking', root, 'for', d)
if d in ('archive', 'metadata', 'repo', 'srclibs', 'tmp'):
# standard parts of an fdroid repo, so never packageNames
continue