##// END OF EJS Templates
error: restore python 2.4 compatibility for BundleValueError...
Brendan Cully -
r21747:fecead61 default
parent child Browse files
Show More
@@ -111,7 +111,7 b' class BundleValueError(ValueError):'
111 msg = parttype
111 msg = parttype
112 if self.params:
112 if self.params:
113 msg = '%s - %s' % (msg, ', '.join(self.params))
113 msg = '%s - %s' % (msg, ', '.join(self.params))
114 super(BundleValueError, self).__init__(msg)
114 ValueError.__init__(self, msg)
115
115
116 class ReadOnlyPartError(RuntimeError):
116 class ReadOnlyPartError(RuntimeError):
117 """error raised when code tries to alter a part being generated"""
117 """error raised when code tries to alter a part being generated"""
General Comments 0
You need to be logged in to leave comments. Login now