summaryrefslogtreecommitdiff
path: root/geneticone/helper.py
diff options
context:
space:
mode:
authornecoro <>2006-10-05 11:56:16 +0000
committernecoro <>2006-10-05 11:56:16 +0000
commitdfbeab611f68502631ed4c575f5809064c948d58 (patch)
tree626675b36f327588ce3ef9d70f28fd5547e94570 /geneticone/helper.py
parent46c5530abed392a2d7d91da165cffca99938f906 (diff)
downloadportato-dfbeab611f68502631ed4c575f5809064c948d58.tar.gz
portato-dfbeab611f68502631ed4c575f5809064c948d58.tar.bz2
portato-dfbeab611f68502631ed4c575f5809064c948d58.zip
Added preference window
Diffstat (limited to '')
-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)