Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
Remove quotations from logging output
Browse files Browse the repository at this point in the history
The quotation marks in the logging seem to just take up with without semantic purpose.  This removes them from the logging format string.
  • Loading branch information
bettse committed Feb 3, 2014
1 parent d5bad04 commit 1b35c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
handler.setFormatter(logging.Formatter('%(asctime)s - %(levelname)s - %(message)s'))
log.addHandler(handler)
else:
logging.basicConfig(format='"%(asctime)s - %(levelname)s - %(message)s"')
logging.basicConfig(format='%(asctime)s - %(levelname)s - %(message)s')

0 comments on commit 1b35c8f

Please sign in to comment.