We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1fea49 commit 80a123cCopy full SHA for 80a123c
tests/test_utils.py
@@ -96,7 +96,7 @@ def checkFilePermissions(dir_path):
96
path = os.path.join(dir_path, file)
97
if os.path.isfile(path):
98
permission = oct(os.stat(path).st_mode)
99
- if sys.version_info > (2, 7, 9):
+ if sys.version_info >= (3, 0):
100
self.assertEqual(permission, '0o100644')
101
else :
102
self.assertEqual(permission, '0100644')
0 commit comments