pep8: Add compliance with rule E261 to pg_backup_and_purge.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:19:47 +05:30 committed by Tim Abbott
parent e83b703780
commit b677689fea
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ with open('/var/lib/nagios_state/last_postgres_backup', 'w') as f:
f.write(now.isoformat()) f.write(now.isoformat())
f.write("\n") f.write("\n")
backups = {} # type: Dict[datetime, str] backups = {} # type: Dict[datetime, str]
lines = run(['env-wal-e', 'backup-list']).split("\n") lines = run(['env-wal-e', 'backup-list']).split("\n")
for line in lines[1:]: for line in lines[1:]:
if line: if line: