diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:06:20 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-16 19:06:20 +0200 |
commit | 83a2fc901136b9da68f50a5a2c9ae1f45dbf5e97 (patch) | |
tree | 8d13a20be6b62f73b228f2fe40cb1f041a7958d5 /python | |
parent | 039e323d7e46f7d8244c42794f713a0bfecbe2d3 (diff) | |
download | vyos-1x-83a2fc901136b9da68f50a5a2c9ae1f45dbf5e97.tar.gz vyos-1x-83a2fc901136b9da68f50a5a2c9ae1f45dbf5e97.zip |
salt-minion: T4364: issue warning - do not use sha1 hashing algorithm
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/base.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/vyos/base.py b/python/vyos/base.py index fd22eaccd..78067d5b2 100644 --- a/python/vyos/base.py +++ b/python/vyos/base.py @@ -1,4 +1,4 @@ -# Copyright 2018-2021 VyOS maintainers and contributors <maintainers@vyos.io> +# Copyright 2018-2022 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 @@ -15,6 +15,12 @@ from textwrap import fill +class Warning(): + def __init__(self, message): + # Reformat the message and trim it to 72 characters in length + message = fill(message, width=72) + print(f'\nWARNING: {message}') + class DeprecationWarning(): def __init__(self, message): # Reformat the message and trim it to 72 characters in length |