diff options
author | Daniil Baturin <daniil@baturin.org> | 2018-07-20 10:39:35 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2018-07-20 10:39:35 +0200 |
commit | d53c4d50e1722a3b5857bd437f5f996b6b9b557f (patch) | |
tree | caff6a000749c4308291a946b7322ddb53b1329e /python | |
parent | 22f76fad89d61b4e575327f17a65eefcce8380ba (diff) | |
download | vyos-1x-d53c4d50e1722a3b5857bd437f5f996b6b9b557f.tar.gz vyos-1x-d53c4d50e1722a3b5857bd437f5f996b6b9b557f.zip |
Remove a stray debug print.
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: |