Error message wording

This commit is contained in:
Michael Lazar
2017-03-28 23:01:51 -07:00
parent 92a221305c
commit aa4a4d706c
2 changed files with 6 additions and 6 deletions

View File

@@ -114,11 +114,11 @@ def main():
# Check the praw version
if packages.__praw_bundled__:
_logger.info('Using packaged PRAW distribution')
_logger.info('PRAW commit hash %s' % packages.__praw_hash__)
_logger.info('Using packaged PRAW distribution, '
'commit %s' % packages.__praw_hash__)
else:
_logger.info('Packaged PRAW not found, falling back to system distribution')
_logger.info('PRAW version %s' % praw.__version__)
_logger.info('Packaged PRAW not found, falling back to system '
'installed version %s' % praw.__version__)
# Construct the reddit user agent
user_agent = docs.AGENT.format(version=__version__)