summaryrefslogtreecommitdiff
path: root/live-mogrify.py
diff options
context:
space:
mode:
Diffstat (limited to 'live-mogrify.py')
-rw-r--r--live-mogrify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/live-mogrify.py b/live-mogrify.py
index bad6d78..9f3c8a3 100644
--- a/live-mogrify.py
+++ b/live-mogrify.py
@@ -230,7 +230,7 @@ class Listener():
new_opt, misc = self.data_opt_parser.parse_known_args([ '--' + key.replace('_', '-'), str(value) ])
new_value = getattr(new_opt, key)
setattr(self.data_opt, key, new_value)
- print('set {} {}: {}'.format(type(new_value), key, new_value))
+ print('set {} {}: {} [{}]'.format(type(new_value), key, new_value, value))
except Exception as e:
print('error {} - cant set value {}: {}'.format(e, key, value))
def _get_fn(self):