Felix Ingram

Results 33 issues of Felix Ingram

Before ```python """Prints things in bold.""" s = "wot?" print("\033[1m{0}\033[0m".format(s)) ``` After: ```python """Prints things in bold.""" s = "wot?" print(f"{s}") ``` Looks like it actually writes the escape codes...

bug
help wanted

Out of the box, the lib will cause Azure to return an unhelpful "your XML is invalid" error. This pull request has some example settings that should help fix the...

Perhaps show the read-only popup when the user attempts to edit something that they can't. Currently the pop up will show regardless of why a user is trying to beautify...

On line 645: ```python return cast(tuple[str, ...], obj.get_rule(self.name, ())) ``` the call to `cast` raises a `TypeError` on python 3.8 and lower. Bumping to python 3.9 removes the error. Raising...

Is there a way to scan rules from non-default buses? They don't seem to be listed.

I've been trying to use the new backends functionality to change from MySQL to Postgres. I get the following error (or variant depending on what I change `sql_driver` to: ```...

Looks like a copy/paste error from `handle_MAIL` ## What do these changes do? Update the docs. ## Are there changes in behavior for the user? No ## Related issue number...

Supposedly this is quite easy using the setup.py

I see that this issue has been raised 7 years ago but I thought I'd see whether anything has changed since then. In particular, python now has the two libraries...

Our wiki uses HTTP Basic Authentication, so it would be useful if the Wiki constructor could take a HttpBasicAuthenticator, or a username/password pair, as an optional argument.