Include link to issue tracker within various command output.
This commit is contained in:
parent
7a4636ae0f
commit
2f20e6f808
4 changed files with 8 additions and 1 deletions
3
NEWS
3
NEWS
|
@ -1,3 +1,6 @@
|
|||
1.2.8.dev0
|
||||
* Include link to issue tracker within various command output.
|
||||
|
||||
1.2.7
|
||||
* #98: Support for Borg --keep-secondly prune option.
|
||||
* Use Black code formatter and Flake8 code checker as part of running automated tests.
|
||||
|
|
|
@ -248,4 +248,6 @@ def main(): # pragma: no cover
|
|||
run_configuration(config_filename, args)
|
||||
except (ValueError, OSError, CalledProcessError) as error:
|
||||
print(error, file=sys.stderr)
|
||||
print(file=sys.stderr)
|
||||
print('Need some help? https://torsion.org/borgmatic/#issues', file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
|
|
@ -38,6 +38,8 @@ def main(): # pragma: no cover
|
|||
print()
|
||||
print('Please edit the file to suit your needs. The values are just representative.')
|
||||
print('All fields are optional except where indicated.')
|
||||
print()
|
||||
print('If you ever need help: https://torsion.org/borgmatic/#issues')
|
||||
except (ValueError, OSError) as error:
|
||||
print(error, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
VERSION = '1.2.7'
|
||||
VERSION = '1.2.8.dev0'
|
||||
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue