summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--live-mogrify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/live-mogrify.py b/live-mogrify.py
index 0a7587b..90fe30e 100644
--- a/live-mogrify.py
+++ b/live-mogrify.py
@@ -136,7 +136,7 @@ class Listener():
try:
if str(value) == 'true':
setattr(self.data_opt, key, True)
- print('set {} {}: {}'.format(type(new_value), key, True)
+ print('set {} {}: {}'.format(type(new_value), key, True))
elif str(value) == 'false':
setattr(self.data_opt, key, False)
print('set {} {}: {}'.format(type(new_value), key, False))