r136 - branches/rewrite/src
Otavio Salvador
partial-mirror-devel@lists.alioth.debian.org
Fri, 02 Jul 2004 14:11:53 -0600
Author: otavio
Date: Fri Jul 2 14:11:53 2004
New Revision: 136
Modified:
branches/rewrite/src/Config.py
Log:
Change to use print instead of the log system bacause on this specific case, this is a real bug and the user should be warned.
Modified: branches/rewrite/src/Config.py
==============================================================================
--- branches/rewrite/src/Config.py (original)
+++ branches/rewrite/src/Config.py Fri Jul 2 14:11:53 2004
@@ -108,7 +108,7 @@
if match in conf.sections():
break
else:
- error("You found a bug: [%s] matches unknown variable [%s]! "
+ print("You found a bug: [%s] matches unknown variable [%s]! "
"Please report it." % (item, variable))
exit(1)
else: