# HG changeset patch
# User Pascal Volk <user@localhost.localdomain.org>
# Date 1340909317 0
# Node ID 54a84a311654df98172c7ec50c59b0d673e1c637
# Parent  14abdd04ddf5204ac17588e74b9a44cfdc20b583
vmm: Don't insert the module directory into sys.path by default.
Doesn't make much sense, if the code is installed inside sys.path.

diff -r 14abdd04ddf5 -r 54a84a311654 vmm
--- a/vmm	Thu Jun 28 18:33:32 2012 +0000
+++ b/vmm	Thu Jun 28 18:48:37 2012 +0000
@@ -9,7 +9,10 @@
 
 if __name__ == '__main__':
     # replace the script's cwd (/usr/local/sbin) with our module dir
-    # (the location of the VirtualMailManager directory)
-    sys.path[0] = '/usr/local/lib/vmm'
+    # (the location of the VirtualMailManager directory) - if it is
+    # not in sys.path
+    #sys.path[0] = '/usr/local/lib/vmm'
+    # Otherwise just remove /usr/local/sbin from sys.path
+    sys.path.remove(sys.path[0])
     from VirtualMailManager.cli.main import run
     sys.exit(run(sys.argv))