Merge pull request #3 from the-emerald/fix-is

Fix SyntaxWarning in recovery.py
This commit is contained in:
Lukas Hahmann 2021-07-09 13:30:00 +02:00 committed by GitHub
commit f59c7bf8cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ for root, dirs, files in os.walk(source, topdown=False):
shutil.copy2(sourcePath, destinationFile)
fileCounter += 1
if((fileCounter % onePercentFiles) is 0):
if((fileCounter % onePercentFiles) == 0):
log(str(fileCounter) + " / " + totalAmountToCopy + " processed.")
log("start special file treatment")