diff options
author | Isis Lovecruft <isis@torproject.org> | 2013-02-16 23:13:08 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2013-02-16 23:13:08 +0000 |
commit | 91d70343acecb1b2225cf94024d738c053eff4c3 (patch) | |
tree | 26868d8589733b3eeb4e3b84e80c5f7af42ad690 | |
parent | 73ee880147dfd2dd5f6e553069028ea32ffc1a53 (diff) |
Fix imports in leap/mx/util/config.py to not import all of os.
-rw-r--r-- | src/leap/mx/util/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/mx/util/config.py b/src/leap/mx/util/config.py index 5bc5231..5be66b1 100644 --- a/src/leap/mx/util/config.py +++ b/src/leap/mx/util/config.py @@ -29,7 +29,9 @@ the section names. Like this: @license: see included LICENSE file """ -import os +from os import path as ospath + +import sys import yaml ## xxx only install/import this in *nix |