summaryrefslogtreecommitdiffstats
path: root/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'util.py')
-rw-r--r--util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.py b/util.py
index f21469d..63fe447 100644
--- a/util.py
+++ b/util.py
@@ -45,7 +45,7 @@ def create_list(listname, listadmin, passwd=None):
(progress, junk) = p.communicate()
return (p.returncode == 0, progress)
except Exception as e:
- progress = e
+ progress = str(e)
return (False, progress)