diff --git a/README.md b/README.md index 3dc07aa..ab0a801 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,9 @@ optional arguments: -e path/to/file, --export path/to/file exports results to file -j, --json outputs json + -s, --save saves tweets to tweets/{twitter_handle}/{yyyy-mm- + dd_HH-MM-SS}.json + --no-color disables colored output ``` ### Example output diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 0aa5cfb..0244871 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -78,7 +78,7 @@ help='outputs json') parser.add_argument('-s', '--save', action='store_true', - help='saves tweets to /%s/{twitter_handle}/{yyyy-mm-dd_HH-MM-SS}.json' %save_folder) + help='saves tweets to %s/{twitter_handle}/{yyyy-mm-dd_HH-MM-SS}.json' %save_folder) parser.add_argument('--no-color', action='store_true', help='disables colored output')