warn if bumpversion isn't installed
This commit is contained in:
parent
e28fab0696
commit
77ce04b377
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ def check_bumpversion():
|
|||
output = output.strip()
|
||||
if output != 'bumpversion 0.5.4-lbry':
|
||||
requireNewVersion()
|
||||
except subprocess.CalledProcessError, OSError:
|
||||
except (subprocess.CalledProcessError, OSError) as err:
|
||||
requireNewVersion()
|
||||
|
||||
def get_part(args, name):
|
||||
|
|
Loading…
Reference in a new issue