From 8b2e1f9a9c493b2d04513f83e154c092df66f761 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Tue, 3 Sep 2019 12:33:32 +0200 Subject: Python/ifconfig: T1557: adjust debug message format * remove missleading " as first character with no closing quote * use single quotes in output messages (unclutter) * when writing changes, make output string copy/pasteable my changing '->' to '>' --- python/vyos/ifconfig.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/vyos') diff --git a/python/vyos/ifconfig.py b/python/vyos/ifconfig.py index 217f898fa..786753b8c 100644 --- a/python/vyos/ifconfig.py +++ b/python/vyos/ifconfig.py @@ -84,7 +84,7 @@ class Interface: def _debug_msg(self, msg): if self._debug: - print('"DEBUG/{}: {}'.format(self._ifname, msg)) + print('DEBUG/{}: {}'.format(self._ifname, msg)) def remove(self): @@ -126,7 +126,7 @@ class Interface: with open(filename, 'r') as f: value = f.read().rstrip('\n') - self._debug_msg('read "{}" <- "{}"'.format(value, filename)) + self._debug_msg("read '{}' < '{}'".format(value, filename)) return value @@ -134,7 +134,7 @@ class Interface: """ Provide a single primitive w/ error checking for writing to sysfs. """ - self._debug_msg('write "{}" -> "{}"'.format(value, filename)) + self._debug_msg("write '{}' > '{}'".format(value, filename)) with open(filename, 'w') as f: f.write(str(value)) -- cgit v1.2.3