mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
Fix quotes - standardize to single-quoted strings
This commit is contained in:
parent
85b4e22046
commit
c5343889fb
30 changed files with 1257 additions and 1257 deletions
|
@ -193,9 +193,9 @@ class NTMRotatingLogHandler(object):
|
|||
self.writes_since_check += 1
|
||||
|
||||
try:
|
||||
message = u"{0}: {1}".format(section.upper(), to_log)
|
||||
message = u'{0}: {1}'.format(section.upper(), to_log)
|
||||
except UnicodeError:
|
||||
message = u"{0}: Message contains non-utf-8 string".format(section.upper())
|
||||
message = u'{0}: Message contains non-utf-8 string'.format(section.upper())
|
||||
|
||||
out_line = message
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue