From 85cab635b1b4e9ab4384fd808c47fba23a29be37 Mon Sep 17 00:00:00 2001 From: "wychen@chromium.org" Date: Thu, 28 May 2015 21:04:37 +0000 Subject: [PATCH] Show date format in help message in my_activity.py It was not very obvious what kind of date format is expected. Review URL: https://codereview.chromium.org/1114093004 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295448 0039d316-1c4b-4281-b951-d872f2087c98 --- my_activity.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/my_activity.py b/my_activity.py index 76b2714f0..8468772cf 100755 --- a/my_activity.py +++ b/my_activity.py @@ -707,10 +707,10 @@ def main(): help='Filter on user, default=%default') parser.add_option( '-b', '--begin', metavar='', - help='Filter issues created after the date') + help='Filter issues created after the date (mm/dd/yy)') parser.add_option( '-e', '--end', metavar='', - help='Filter issues created before the date') + help='Filter issues created before the date (mm/dd/yy)') quarter_begin, quarter_end = get_quarter_of(datetime.today() - relativedelta(months=2)) parser.add_option( @@ -722,7 +722,7 @@ def main(): help='Use this year\'s dates') parser.add_option( '-w', '--week_of', metavar='', - help='Show issues for week of the date') + help='Show issues for week of the date (mm/dd/yy)') parser.add_option( '-W', '--last_week', action='count', help='Show last week\'s issues. Use more times for more weeks.')