1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-22 14:11:27 +00:00

Quit with error message when no config key is provided. Fixes #4223

This commit is contained in:
Manu 2019-01-30 11:30:31 +08:00
parent 2bcff382cb
commit e155822474
2 changed files with 6 additions and 0 deletions

View file

@ -1620,6 +1620,10 @@ def list_config(config):
print('%s = %s' % (key, value))
if not args.list:
if args.name is None:
self.print_error('No config key name was provided.')
return self.exit_code
try:
section, name = args.name.split('.')
except ValueError:

View file

@ -2793,6 +2793,8 @@ def test_config(self):
self.cmd('config', '--delete', self.repository_location, cfg_key)
self.cmd('config', self.repository_location, cfg_key, exit_code=1)
self.cmd('config', '--list', '--delete', self.repository_location, exit_code=2)
self.cmd('config', self.repository_location, exit_code=2)
self.cmd('config', self.repository_location, 'invalid-option', exit_code=1)
requires_gnutar = pytest.mark.skipif(not have_gnutar(), reason='GNU tar must be installed for this test.')
requires_gzip = pytest.mark.skipif(not shutil.which('gzip'), reason='gzip must be installed for this test.')