chiark / gitweb /
Implement the 'mail' command
[stgit] / stgit / main.py
index 06611a9ff95fca887bc0a6d867e0620f98b320c4..72bb30ef63f0d874de956e99111b768240d4f281 100644 (file)
@@ -36,6 +36,7 @@ import stgit.commands.clean
 import stgit.commands.export
 import stgit.commands.files
 import stgit.commands.init
+import stgit.commands.mail
 import stgit.commands.new
 import stgit.commands.pop
 import stgit.commands.push
@@ -60,6 +61,7 @@ commands = {
     'export':   stgit.commands.export,
     'files':    stgit.commands.files,
     'init':     stgit.commands.init,
+    'mail':     stgit.commands.mail,
     'new':      stgit.commands.new,
     'pop':      stgit.commands.pop,
     'push':     stgit.commands.push,