[Pypt-offline-general] SF.net SVN: pypt-offline: [133] trunk/pypt_core.py
Status: Beta
Brought to you by:
riteshsarraf
From: <rit...@us...> - 2007-03-22 10:06:02
|
Revision: 133 http://svn.sourceforge.net/pypt-offline/?rev=133&view=rev Author: riteshsarraf Date: 2007-03-22 03:06:03 -0700 (Thu, 22 Mar 2007) Log Message: ----------- * Oh!! How did I miss to clean this up. Modified Paths: -------------- trunk/pypt_core.py Modified: trunk/pypt_core.py =================================================================== --- trunk/pypt_core.py 2007-03-22 09:57:06 UTC (rev 132) +++ trunk/pypt_core.py 2007-03-22 10:06:03 UTC (rev 133) @@ -123,7 +123,7 @@ except ImportError: WindowColor = False - def __init__(self, warnings, verbose, debug): + def __init__(self, warnings, verbose): if warnings is True: self.WARN = True @@ -133,10 +133,6 @@ self.VERBOSE = True else: self.VERBOSE = False - if debug is True: - self.DEBUG = True - else: self.DEBUG = False - def msg(self, msg): if self.WindowColor: WConio.textcolor(15) @@ -882,7 +878,7 @@ # The log implementation # Instantiate the class global log - log = Log(options.warnings, options.verbose, options.debug) + log = Log(options.warnings, options.verbose) log.msg("pypt-offline %s\n" % (version)) log.msg("Copyright %s\n" % (copyright)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |