]> git.llucax.com Git - software/pymin.git/commitdiff
Update services.util errors to be unicode compatible.
authorFede <fedux@linux-kt9u.site>
Sat, 6 Oct 2007 15:59:55 +0000 (12:59 -0300)
committerFede <fedux@linux-kt9u.site>
Sat, 6 Oct 2007 15:59:55 +0000 (12:59 -0300)
pymin/services/util.py

index a61045c6d7f61a8e4271c5aabae5939e134e9feb..e5aa202281a63931a85c3caea44907305fbd7e18 100644 (file)
@@ -26,13 +26,7 @@ class Error(HandlerError):
 
     message - A descriptive error message.
     """
-
-    def __init__(self, message):
-        r"Initialize the object. See class documentation for more info."
-        self.message = message
-
-    def __str__(self):
-        return self.message
+    pass
 
 class ReturnNot0Error(Error):
     r"""
@@ -47,7 +41,7 @@ class ReturnNot0Error(Error):
         r"Initialize the object. See class documentation for more info."
         self.return_value = return_value
 
-    def __str__(self):
+    def __unicode__(self):
         return 'The command returned %d' % self.return_value
 
 class ExecutionError(Error):
@@ -66,7 +60,7 @@ class ExecutionError(Error):
         self.command = command
         self.error = error
 
-    def __str__(self):
+    def __unicode__(self):
         command = self.command
         if not isinstance(self.command, basestring):
             command = ' '.join(command)