summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-01-31 22:03:30 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2012-01-31 22:04:46 +0100
commit788f093d729efde940bc35d14a4df4053c2b4a6c (patch)
tree47619c51a63fd4a041dc840262f9e20a8b341fee
parent5d2d4bef16a7c91eb9ec49f68926d7f7ed377ba4 (diff)
downloadsites-788f093d729efde940bc35d14a4df4053c2b4a6c.tar.gz
sites-788f093d729efde940bc35d14a4df4053c2b4a6c.tar.bz2
sites-788f093d729efde940bc35d14a4df4053c2b4a6c.zip
create_list: moved support script to contrib directory
-rw-r--r--util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.py b/util.py
index 0709d58..113edd6 100644
--- a/util.py
+++ b/util.py
@@ -39,7 +39,7 @@ def create_list(listname, listadmin, passwd=None):
try:
# create list
- p = subprocess.Popen(['sudo', '-n', os.path.join(config.mailman_path, 'bin', 'neueliste.bash'),
+ p = subprocess.Popen(['sudo', '-n', os.path.join(config.mailman_path, 'contrib', 'neueliste.bash'),
listname, listadmin, passwd],
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
(progress, junk) = p.communicate()