Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2009-08-19 10:04:01 (GMT)
committer Simon Schampijer <simon@schampijer.de>2009-08-19 10:04:01 (GMT)
commit748f5e5e326d13bf5233b2f516ad52d0c5f37ead (patch)
treed858b7f65e380b90aa75bcb414f15a266f67a475 /src
parent7363fc1f72ee74d2da534eb16de608634e1b7398 (diff)
CP: Better representation of the clear commands in the help
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/controlpanel/cmd.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jarabe/controlpanel/cmd.py b/src/jarabe/controlpanel/cmd.py
index 12de1e2..5f2de68 100644
--- a/src/jarabe/controlpanel/cmd.py
+++ b/src/jarabe/controlpanel/cmd.py
@@ -105,6 +105,9 @@ def main():
for method in methods:
if method.startswith('get_'):
print ' %s' % method[4:]
+ elif method.startswith('clear_'):
+ print " %s (use the -c argument with this option)" \
+ % method[6:]
if option in ("-g"):
for module in modules:
method = getattr(module, 'print_' + key, None)