summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2011-09-29 00:23:48 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2011-09-29 00:23:48 +0200
commit1dae37de6f85f7bbfca8bf205f2d886d005e3b69 (patch)
tree8761d86d33d866d49bad29b8989938b93c59b90b
parent207ed7a01ba069ba02a959761b54fd8554809264 (diff)
downloadcontrib-1dae37de6f85f7bbfca8bf205f2d886d005e3b69.tar.gz
contrib-1dae37de6f85f7bbfca8bf205f2d886d005e3b69.tar.bz2
contrib-1dae37de6f85f7bbfca8bf205f2d886d005e3b69.zip
new common module to add path to mailman to sys.path
-rw-r--r--common.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/common.py b/common.py
new file mode 100644
index 0000000..cc1a52e
--- /dev/null
+++ b/common.py
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+
+import sys
+from os import path
+
+contrib = path.dirname(__file__)
+sys.path.append(path.join(contrib, '..'))
+