summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authornico <nico@magicbroccoli.de>2018-11-07 00:49:32 +0100
committernico <nico@magicbroccoli.de>2018-11-07 00:49:32 +0100
commit146a4efc7f9bb97caaa97ddd02f1ce244cb4deb0 (patch)
tree19bb62f443e51cd0af421fdd398d2c53af117d80 /common
parentd7fc664d3be4634a693a24fa98ff3f15d2c97c41 (diff)
small fixup
+ added timestamp to logging output * finished up HandleError output
Diffstat (limited to 'common')
-rwxr-xr-xcommon/misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/misc.py b/common/misc.py
index 1350a2a..e0df882 100755
--- a/common/misc.py
+++ b/common/misc.py
@@ -64,6 +64,6 @@ class HandleError:
def report(self):
# return the formatted result string to the user
- text = "%s, %s resulted in: %s" % (self.text, self.key, self.condition)
+ text = "%s. %s %s resulted in: %s" % (self.text, self.key, self.target, self.condition)
return text