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: utf-8 -*-
|
||||
# Authors: Douglas Creager <dcreager@dcreager.net>
|
||||
# Calum Lind <calumlind@gmail.com>
|
||||
#
|
||||
|
@ -56,9 +55,9 @@ def call_git_describe(prefix='', suffix=''):
|
|||
|
||||
def get_version(prefix='deluge-', suffix='.dev0'):
|
||||
try:
|
||||
with open(VERSION_FILE, 'r') as f:
|
||||
with open(VERSION_FILE) as f:
|
||||
release_version = f.readline().strip()
|
||||
except IOError:
|
||||
except OSError:
|
||||
release_version = None
|
||||
|
||||
version = call_git_describe(prefix, suffix)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue