A couple of pylint changes

This commit is contained in:
Michael Lazar
2017-03-28 23:18:13 -07:00
parent e37904fba5
commit 13e9fd9b10
5 changed files with 5 additions and 6 deletions

View File

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