Updating to Python 3

This commit is contained in:
noname45688@gmail.com 2020-06-30 16:33:08 -04:00
parent ab2b7c0969
commit 6ab6279bd9
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
''' '''
Run this script inside of src/ and it will look for all the files Run this script inside of src/ and it will look for all the files
that were changed this year that still have the last year in the that were changed this year that still have the last year in the
@ -46,7 +46,7 @@ for extension in extensions:
filePath = os.getcwd() + filePath filePath = os.getcwd() + filePath
modifiedTime = getLastGitModifiedDate(filePath) modifiedTime = getLastGitModifiedDate(filePath)
if len(modifiedTime) > 0 and str(year) in modifiedTime: if len(modifiedTime) > 0 and str(year) in modifiedTime:
print n,"Last Git Modified: ", modifiedTime, " - ", filePath print(n,"Last Git Modified: ", modifiedTime, " - ", filePath)
os.popen(command % (last_year,year,filePath)) os.popen(command % (last_year,year,filePath))
n = n + 1 n = n + 1