diff options
author | kali <kali@leap.se> | 2013-03-19 00:49:54 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-03-19 00:50:38 +0900 |
commit | 5be6aba659b8e7db486e985ac1bb98bdae53233f (patch) | |
tree | a52695d1bda428c54aa7c02918763488fa010186 | |
parent | 1f4841079a72df874d0624f7908115ded295a82f (diff) |
move abc import to its place
-rw-r--r-- | src/leap/config/prefixers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/config/prefixers.py b/src/leap/config/prefixers.py index dc00b5b6..c65d8f53 100644 --- a/src/leap/config/prefixers.py +++ b/src/leap/config/prefixers.py @@ -18,10 +18,11 @@ """ Platform dependant configuration path prefixers """ -from abc import ABCMeta, abstractmethod import os import platform +from abc import ABCMeta, abstractmethod + from xdg import BaseDirectory from leap.common.check import leap_assert |