# HG changeset patch # User Sylvain Thénault # Date 1250256909 -7200 # Node ID 92032ede5ae71f586c70490db887b536aeb95305 # Parent 297a4b5c6ce40425746e92f22c4669dd58679e3d cleanup diff -r 297a4b5c6ce4 -r 92032ede5ae7 _exceptions.py --- a/_exceptions.py Fri Aug 14 15:34:49 2009 +0200 +++ b/_exceptions.py Fri Aug 14 15:35:09 2009 +0200 @@ -79,8 +79,6 @@ msg = 'You are not allowed to perform this operation' msg1 = 'You are not allowed to perform %s operation on %s' var = None - #def __init__(self, *args): - # self.args = args def __str__(self): try: @@ -118,9 +116,6 @@ this may be a programming/typo or a misconfiguration error """ -# class ViewNotFound(ObjectNotFound): -# """raised when an unregistered view is called""" - class NoSelectableObject(RegistryException): """some views with the given vid have been found but no one is applyable to the result set @@ -149,4 +144,3 @@ # pylint: disable-msg=W0611 from logilab.common.clcommands import BadCommandUsage -