Index: my_reviews.py |
=================================================================== |
--- my_reviews.py (revision 256290) |
+++ my_reviews.py (working copy) |
@@ -342,6 +342,14 @@ |
options.end = end |
print >> sys.stderr, 'Using range %s to %s' % ( |
options.begin, options.end) |
+ |
+ # Validate dates. |
+ try: |
+ to_datetime(options.begin) |
+ to_datetime(options.end) |
+ except ValueError, e: |
M-A Ruel
2014/03/11 19:44:37
Oh I had forgot; use the new form:
except ValueErr
Lei Zhang
2014/03/11 20:01:47
Done.
|
+ parser.error('%s: %s - %s' % (e, options.begin, options.end)) |
+ |
if options.count: |
print_count( |
options.reviewer, |