Dark Light

Given the following code:

def index():
        try:
                import MySQLdb
        except:
                return "Couldn't import MySQL module"
        return "Yay Workyness"

inside a mod_python instance, is there any reason why it should return “Yay Workyness” and “Couldn’t import MySQL module” in roughly equal amounts? (MySQLdb in this case is a sub directory of the current working directory). Bugs I can cope with, but this inconsistancy is driving me insane…

Related Posts

Really Silly Subject

I’ve fixed the RSS/RSS2/ESF feeds for Aquarionics. Not much of a change from the user pov, although the…

Blogger API V2

Interestingly, the new version of the Blogger API fixes every complaint I had about the old version, and…