[script][mailman] correct error message

This commit is contained in:
Mathieu Maret 2014-04-25 15:59:19 +02:00
parent 63f499f13c
commit 61a71b7051
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def getListUser(listName):
(stdout, stderr) = proc.communicate()
ret = proc.returncode
if ret != 0:
print "error when checking user %s list %s : %s"%(user, listName, stderr)
print "error when checking list %s : %s"%(listName, stderr)
return []
return stdout.split('\n')