You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2017/01/12 21:44:51 UTC

incubator-ponymail git commit: Show appropriate name

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master 1eba85ff5 -> da8a32e82


Show appropriate name

Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/da8a32e8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/da8a32e8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/da8a32e8

Branch: refs/heads/master
Commit: da8a32e822ff111431d4d5b9f7013bfabdca21ad
Parents: 1eba85f
Author: Sebb <se...@apache.org>
Authored: Thu Jan 12 21:29:31 2017 +0000
Committer: Sebb <se...@apache.org>
Committed: Thu Jan 12 21:29:31 2017 +0000

----------------------------------------------------------------------
 tools/edit-list.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/da8a32e8/tools/edit-list.py
----------------------------------------------------------------------
diff --git a/tools/edit-list.py b/tools/edit-list.py
index 748a09a..1f38137 100755
--- a/tools/edit-list.py
+++ b/tools/edit-list.py
@@ -134,7 +134,10 @@ if targetLID:
     targetLID = "<%s>" % targetLID.replace("@", ".").strip("<>")
 
 print("Beginning list edit:")
-print("  - List ID: %s" % (sourceLID if sourceLID else mid))
+if sourceLID:
+    print("  - List ID: %s" % sourceLID)
+else:
+    print("  - MID: %s" % mid)
 if targetLID:
     print("  - Target ID: %s" % targetLID)
 if makePublic: