diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index 3d9925a60..3c454ed4a 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -108,7 +108,6 @@ def seconds_to_human(s, separator=""): if minutes > 0: result = "{0}{1}{2}m".format(result, separator, minutes) s = s % 60 - print(s) seconds = s if seconds > 0: |