diff options
author | kali <kali@leap.se> | 2012-08-08 20:06:14 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-08-08 20:06:14 +0900 |
commit | b1e025a343d0c6019127871acb47d7b295d342e9 (patch) | |
tree | b5d175e1bf8b625433ba8d8ec83cb45b0ccc8618 /src/leap/util/fileutil.py | |
parent | c1fa99be4dc4174a34620324ec5056b793196b53 (diff) | |
parent | 60a51aed9c1ee9249a79b3d996ae86d93a9532de (diff) |
Merge branch 'tests-cleanup' into develop
moved out old broken stuff;
copied a run_scripts entry point for tests;
created a bunch of (mostly stubs) simple tests on secondary
functions.
Diffstat (limited to 'src/leap/util/fileutil.py')
-rw-r--r-- | src/leap/util/fileutil.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/util/fileutil.py b/src/leap/util/fileutil.py index cc3bf34b..429e4b12 100644 --- a/src/leap/util/fileutil.py +++ b/src/leap/util/fileutil.py @@ -96,7 +96,9 @@ def check_and_fix_urw_only(_file): test for 600 mode and try to set it if anything different found """ - mode = os.stat(_file).st_mode + mode = stat.S_IMODE( + os.stat(_file).st_mode) + if mode != int('600', 8): try: logger.warning( |