mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
Upgrade codebase with pyupgrade (>=py3.6)
Added pyupgrade utility with manual stage to pre-commit and run on all files. Ref: https://github.com/asottile/pyupgrade Closes: deluge-torrent/deluge#326
This commit is contained in:
parent
16895b4a49
commit
ec0bcc11f5
261 changed files with 440 additions and 713 deletions
|
@ -1,5 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: iso-8859-1 -*-
|
||||
# Written by Martin v. Lwis <loewis@informatik.hu-berlin.de>
|
||||
# Plural forms support added by alexander smishlajev <alex@tycobka.lv>
|
||||
"""
|
||||
|
@ -122,11 +121,9 @@ def make(filename, outfile):
|
|||
outfile = os.path.splitext(infile)[0] + '.mo'
|
||||
|
||||
try:
|
||||
import io
|
||||
|
||||
with io.open(infile, encoding='utf8') as _file:
|
||||
with open(infile, encoding='utf8') as _file:
|
||||
lines = _file.readlines()
|
||||
except IOError as msg:
|
||||
except OSError as msg:
|
||||
print(msg, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
|
@ -194,7 +191,7 @@ def make(filename, outfile):
|
|||
try:
|
||||
with open(outfile, 'wb') as _file:
|
||||
_file.write(output)
|
||||
except IOError as msg:
|
||||
except OSError as msg:
|
||||
print(msg, file=sys.stderr)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue