Brent O'Connor

Results 59 comments of Brent O'Connor

@mtibben, Is the file backend what is recommended when using WSL 2/ubuntu or is it something else? I would need to know that before creating a PR.

I was able to get things looking the way I wanted using this method, so maybe things are fixed. ``` html {% csrf_token %} {{ form.name|bootstrap }} {{ form.address|bootstrap }}...

Yes, that's a great start, thank you. I think it will be helpful to others if you add it to the README. It might also be worth adding something about...

@dcramer, FYI, I just ran into this as well. The [docs](https://docs.sentry.io/clients/python/integrations/django/) don't mention using a custom 500 view right now either.

I guess It does say something in the Message Reference section, but I missed it because there wasn't anything in the User Feedback Section. https://docs.sentry.io/clients/python/integrations/django/#message-references

Also as an FYI you might want to suggest a server error view like the following so you can dynamically insert the dsn. ``` from urllib.parse import urlparse def server_error(request):...

@PetrDlouhy, Doing a quick look at your code ... I think it looks good. However, I don't really want to add the Django Rest Framework as a dependency that would...

@miceno, Sounds like the documentation needs to be changed, to say that you need to add 'categories' in INSTALLED_APPS. Want to make a PR?

I'm puzzled. I have no idea how you could be using 1.4 because there is no file categories/migrations/0003_auto__add_field_category_thumbnail.py in version 1.4. Maybe uninstall your django-categories and then re-install.

It could be that the Python 3 wheel is correct but the Python 2 version, isn't. I've made a note that I need to get that fixed.