-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thread exception in Bottle v0.14-dev #1455
Comments
You seem to have a module loaded with a for name, mod in sys.modules.items():
if getattr(mod, '__file__', '') is None:
print(f"Broken module {name} has an invalid __file__") It's not a bug in bottle, but some other module you have loaded. But a workaround would be really simple, I'll prepare one. |
This seems to be a bug in |
Wow : Quick answers !
In the """
Blah...
"""
__all__=["bottle", "model", "macaron", "settings"] Maybe something is lacking in my |
Hi,
|
Hi all,
Trying to solve an encoding problem (unable to get forms well encoded),, I have loaded 0.14.dev version.
Now on launching an app in the console, I get the message :
The application seems running.
I suspect that the encoding problem is still not solved. But that's another question.
Python 3.10.12
The text was updated successfully, but these errors were encountered: