aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/template
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-04-14 18:07:49 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-04-14 18:07:49 +0000
commit16a391aaf9d3934f7297b7a8fb87184cf555882f (patch)
treeb016864fd16dcbaaba1ab09ec0a6668dddcaa60b /becommands/template
parent82c1e85e1845d33b8e552c9f832f91d032466036 (diff)
downloadbugseverywhere-16a391aaf9d3934f7297b7a8fb87184cf555882f.tar.gz
Added preliminary tree-diffing support
Diffstat (limited to 'becommands/template')
-rw-r--r--becommands/template21
1 files changed, 21 insertions, 0 deletions
diff --git a/becommands/template b/becommands/template
new file mode 100644
index 0000000..3c871e6
--- /dev/null
+++ b/becommands/template
@@ -0,0 +1,21 @@
+"""Short description"""
+from libbe import bugdir, cmdutil, names
+import os
+def execute(args):
+ options, args = get_parser().parse_args(args)
+ if len(args) > 0:
+ raise cmdutil.UsageError
+
+
+def get_parser():
+ parser = cmdutil.CmdOptionParser("be list [options]")
+# parser.add_option("-w", "--wishlist", action="store_true", dest="wishlist",
+# help="List bugs with 'wishlist' severity")
+ return parser
+
+longhelp="""
+This is for the longwinded description
+"""
+
+def help():
+ return get_parser().help_str() + longhelp