try: None.doit() except Exception as e: logger.exception('Nope') else: # now what? pass
All it means is the try clause didn't raise any exceptions. And a "finally" clause is ran whether an exception was raised or not.