Author: justi9
Date: 2010-01-27 10:59:47 -0500 (Wed, 27 Jan 2010)
New Revision: 3825
Modified:
mgmt/trunk/parsley/python/parsley/command.py
Log:
Use the right super call
Modified: mgmt/trunk/parsley/python/parsley/command.py
===================================================================
--- mgmt/trunk/parsley/python/parsley/command.py 2010-01-27 15:52:45 UTC (rev 3824)
+++ mgmt/trunk/parsley/python/parsley/command.py 2010-01-27 15:59:47 UTC (rev 3825)
@@ -159,6 +159,6 @@
class CommandException(Exception):
def __init__(self, command, message):
- super(CommandException, self).__init__(message)
+ Exception.__init__(self, message)
self.command = command
Show replies by date