summaryrefslogtreecommitdiff
path: root/geneticone/helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'geneticone/helper.py')
-rw-r--r--geneticone/helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/geneticone/helper.py b/geneticone/helper.py
index 7ceede8..4b2a207 100644
--- a/geneticone/helper.py
+++ b/geneticone/helper.py
@@ -30,9 +30,9 @@ def debug(*args, **kwargs):
out.append(str(obj))
text = ' '.join(out)
if "name" in kwargs:
- text = 'In %s (%s:%s) %s:' % (kwargs["name"], a, b, text)
+ text = 'In %s (%s:%s): %s' % (kwargs["name"], a, b, text)
else:
- text = 'In %s (%s:%s) %s:' % (c, a, b, text)
+ text = 'In %s (%s:%s): %s' % (c, a, b, text)
#if wrap:
# text = textwrap.fill(text)