Your message dated Thu, 13 Apr 2006 18:45:18 +0200
with message-id <[EMAIL PROTECTED]>
and subject line optik for python 2.2 removed
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: python2.2-optik
Version: 1.4-3
Severity: wishlist
Tags: patch
Optik shouldn't be quite as picky... especially when the developer himself
thinks something's not needed ;-)
So, please forward this "patch" to Greg:
OLD:
def _check_action (self):
if self.action is None:
self.action = "store"
elif self.action not in self.ACTIONS:
raise OptionError("invalid action: %r" % self.action, self)
NEW:
def _check_action (self):
if self.action is None:
if hasattr(self, "callback") and self.callback:
self.action = "callback"
else:
self.action = "store"
elif self.action not in self.ACTIONS:
raise OptionError("invalid action: %r" % self.action, self)
Hmm, tried it. Had only the hasattr check first. Noticed that it fails
that way. So, it seems the hasattr isn't needed... but where is
self.callback set? The source is a *little* murky here...
-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux sanctum 2.4.20-sanctum #3 Fri Nov 29 09:58:21 CET 2002 i686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8
Versions of packages python2.2-optik depends on:
ii python2.2 2.2.2-2 An interactive object-oriented scr
-- no debconf information
--
Jürgen A. Erhard ([EMAIL PROTECTED])
My WebHome: http://jerhard.org
Give a man fire and he will be warm for a day.
Set a man on fire and he will be warm for the rest of his life.
pgprlHGbWGsyG.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
The optik module for python 2.2 has been removed from Debian since
2.1/2.2 are no longer supported.
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---