Added a test and small change for error output

This commit is contained in:
Milos Pejanovic
2018-11-14 00:43:04 +01:00
parent 1c97d3f5fd
commit bf8c8521cd
2 changed files with 16 additions and 1 deletions

View File

@@ -132,7 +132,7 @@ def autoupdate(runner, store, tags_only, repos=()):
try:
new_repo_config = _update_repo(repo_config, store, tags_only)
except RepositoryCannotBeUpdatedError as error:
output.write_line(error.args[0])
output.write_line(str(error))
output_repos.append(repo_config)
retv = 1
continue