changeset 23:8b501dfe7d85

changed names of cmd line options to make a bit more sense
author Atul Varma <varmaa@toolness.com>
date Sun, 03 Jan 2010 05:01:38 -0800
parents f2fafca30ff3
children 2b4cf6903012
files publish_edition.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/publish_edition.py	Sun Jan 03 04:58:47 2010 -0800
+++ b/publish_edition.py	Sun Jan 03 05:01:38 2010 -0800
@@ -162,21 +162,21 @@
     logging.info('wrote %s (issue #%d).' % (JSON_FILENAME, issue_id))
 
 parser_options = {
-    ('-w', '--update-whoisi',): 
+    ('-w', '--refresh-whoisi',): 
     dict(dest='update_whoisi',
          help='re-sync with whoisi.com',
          action='store_true',
          default=False),
 
-    ('-u', '--update-urls',): 
+    ('-f', '--refresh-feeds',): 
     dict(dest='update_urls',
          help='refresh feeds',
          action='store_true',
          default=False),
 
-    ('-a', '--update-articles',): 
+    ('-p', '--reparse-feeds',): 
     dict(dest='update_articles',
-         help='re-parse articles',
+         help='re-parse feeds',
          action='store_true',
          default=False),
 }