Matt Molyneaux

Results 170 comments of Matt Molyneaux

See https://github.com/moggers87/salmon/pull/100 - will be interesting to see if it now installs correctly on pypy or not.

#100 has been merged, thanks for prodding me to look into this again @jluttine :+1:

I'd still like to remove python-daemon, especially as it still relies on lockfile (which is deprecated) and I don't trust the author not to break `pip install`ing again given the...

The exceptions are coming from Python's mailbox module - it looks like a write permission error.

I don't think this has anything to do with `ignored_report` - I think that's just to make sure `.coverage` files don't end up in the report as files that are...

Getting a similar error, but for style: > Content Security Policy: The page's settings blocked the loading of a resource at self ("style-src https://192.168.2.135"). Source: .minvid__overlay__container { align.... CSP header...

Would it be possible to only inject the CSS when a valid video is found?

@OskarPersson are you able to test the latest version from git? I think https://github.com/etianen/django-watson/pull/245 may have fixed your issue.

OK, so we need to remove the remaining `QuerySet.extra`. That's going to be quite a bit of work! The main issue is that we're adding things to the WHERE clause,...

A general workaround for this bug is to use F expressions: ``` from django.db.models import F q1 = ModelOne.objects.filter(flags=F('flags').bitor(ModelOne.flags.flag)) q2 = ModelTwo.objects.filter(id__in=q1) ``` This will produce the correct SQL. It's...