-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional context to --debug log messages (#28)
* Add additional context to --debug log messages In the `main()` method, in debug mode, we print out the argument dictionaries a few times but without context for which one is which. This commit adds an extra line of debug logging each time that indicates from which point in the process the args are originating. Hopefully this will expedite any arg parsing debugging. I've also removed one line of unused code that created an intermediate object for the argparse object. * Bump version
- Loading branch information
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
long_description=open('README.rst', 'r', encoding="utf-8").read(), | ||
author_email='[email protected]', | ||
license='MIT', | ||
version='1.4.0', | ||
version='1.5.0', | ||
python_requires='>=3.3', | ||
install_requires=["requests", "tweet_parser", "pyyaml"], | ||
packages=find_packages(), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters