fix wrong variable name

This commit is contained in:
Anubhav Patel 2018-01-24 23:29:05 +05:30
parent 1adf5b32a4
commit 26c98742a3
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ def samefile(file1, file2):
else:
path1 = os.path.normcase(os.path.abspath(file1))
path2 = os.path.normcase(os.path.abspath(file2))
return path1 == path
return path1 == path2
if sys.version_info >= (3, 3):