changeset 44:b4f3939eeb38

notes to self
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 17 Dec 2012 11:00:23 -0800
parents 678b82fedb40
children ed53dd00327f
files bzconsole/command.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bzconsole/command.py	Sun Dec 16 20:22:30 2012 -0800
+++ b/bzconsole/command.py	Mon Dec 17 11:00:23 2012 -0800
@@ -2,6 +2,8 @@
 a command-line interface to the command line, a la pythonpaste
 """
 
+# TODO: move to http://k0s.org/hg/CommandParser/
+
 import inspect
 import json
 import os
@@ -238,5 +240,5 @@
                     if value is not None:
                         help += ' [DEFAULT: %s]' % value
                     parser.add_option('--%s' % key, help=help, default=value)
-                                  
+
         return parser