vmm
changeset 760 b678a1c43027
parent 748 659c4476c57c
child 761 e4e656f19771
--- a/vmm	Mon Mar 24 19:22:04 2014 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: UTF-8 -*-
-# Copyright 2007 - 2014, Pascal Volk
-# See COPYING for distribution information.
-
-"""This is the vmm main script."""
-
-import sys
-
-if __name__ == '__main__':
-    # replace the script's cwd (/usr/local/sbin) with our module dir
-    # (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))