diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-11-17 09:45:56 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2014-11-17 09:45:56 +0100 |
commit | 33789dbe2b3c95d291218953e88e9d7c82ba05c3 (patch) | |
tree | e098a656bea12babe97f514d25cfe7bf03029cf4 /kolab-cli.py | |
parent | 61b00207a248079c22215fa1fcaac4ddb37ab751 (diff) | |
download | pykolab-33789dbe2b3c95d291218953e88e9d7c82ba05c3.tar.gz |
Prepend the local search path rather than appending it
Diffstat (limited to 'kolab-cli.py')
-rwxr-xr-x | kolab-cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kolab-cli.py b/kolab-cli.py index b4a98e3..760c902 100755 --- a/kolab-cli.py +++ b/kolab-cli.py @@ -23,7 +23,7 @@ import os import sys # For development purposes -sys.path.extend(['.', '..']) +sys.path = [ '.' ] + sys.path from pykolab.translate import _ from pykolab.cli import Cli |