Add trailing commas to multiline lists, to prevent string concatenation bugs

This commit is contained in:
Calen Pennington
2014-02-13 13:12:42 -05:00
parent a2efb796b6
commit 3a7b265c8a
7 changed files with 8 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ import logging
# Silence noisy loggers
LOG_OVERRIDES = [
('requests.packages.urllib3.connectionpool', logging.ERROR),
('django.db.backends', logging.ERROR)
('django.db.backends', logging.ERROR),
]
for log_name, log_level in LOG_OVERRIDES: