diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-04 22:17:51 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-05-04 22:21:10 +0200 |
commit | dd59e375bee722c220c58b047ff5c6e533cc7a00 (patch) | |
tree | 8209628b612760f7ca270db76df3d935a63ce387 /python | |
parent | ba81c15185d7a59ab0ec6705b53b311b4dda721d (diff) | |
download | vyos-1x-dd59e375bee722c220c58b047ff5c6e533cc7a00.tar.gz vyos-1x-dd59e375bee722c220c58b047ff5c6e533cc7a00.zip |
T4819: remove additional newline from vyos.base.Warning()
... just oo many new lines for multiple Warnings.
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/vyos/base.py b/python/vyos/base.py index 9b93cb2f2..c1acfd060 100644 --- a/python/vyos/base.py +++ b/python/vyos/base.py @@ -1,4 +1,4 @@ -# Copyright 2018-2022 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2018-2023 VyOS maintainers and contributors <maintainers@vyos.io> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -41,7 +41,6 @@ class BaseWarning: isfirstmessage = False initial_indent = self.standardindent print(f'{mes}') - print('') class Warning(): |