Cleaned up tests for syntax
This commit is contained in:
+2
-2
@@ -15,13 +15,13 @@ def ensureDir(theDir):
|
||||
def cmpFiles(fileOne, fileTwo, ignoreLines=[]):
|
||||
|
||||
try:
|
||||
foOne = open(fileOne,mode="r",encoding="utf8")
|
||||
foOne = open(fileOne, mode="r", encoding="utf8")
|
||||
except Exception as e:
|
||||
print(str(e))
|
||||
return False
|
||||
|
||||
try:
|
||||
foTwo = open(fileTwo,mode="r",encoding="utf8")
|
||||
foTwo = open(fileTwo, mode="r", encoding="utf8")
|
||||
except Exception as e:
|
||||
print(str(e))
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user