[javascriptlint-commit] SF.net SVN: javascriptlint: [181] trunk/pyjsl/conf.py
Status: Beta
Brought to you by:
matthiasmiller
From: <mat...@us...> - 2008-03-31 21:46:14
|
Revision: 181 http://javascriptlint.svn.sourceforge.net/javascriptlint/?rev=181&view=rev Author: matthiasmiller Date: 2008-03-31 14:46:09 -0700 (Mon, 31 Mar 2008) Log Message: ----------- Fix ConfError's call to Exception.__init__. Patch by: Jeff Balogh <its.jeff.balogh at gmail.com> Modified Paths: -------------- trunk/pyjsl/conf.py Modified: trunk/pyjsl/conf.py =================================================================== --- trunk/pyjsl/conf.py 2008-03-31 21:39:34 UTC (rev 180) +++ trunk/pyjsl/conf.py 2008-03-31 21:46:09 UTC (rev 181) @@ -4,7 +4,7 @@ class ConfError(Exception): def __init__(self, error): - Exception.__init__(error) + Exception.__init__(self, error) self.lineno = None self.path = None This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |