andreymal

Results 116 comments of andreymal

2016.11.28 is too old, use latest version from [the official website](http://www.live555.com/liveMedia/public/) (2018.10.10)

I think `/var/lib/aspia/router.db3` should also have 600/640

**@​stale** nope

I have similar problem: `live_server` is not working, it prints error `no such table: django_session`. The @Helumpago's workaround fixed this error for me. But pytest prints this warning: >RemovedInPytest4Warning: Fixture...

The @Helumpago's workaround raises an error instead of warning since pytest 4.0 (2018-11-13) :( UPD: looks like it works (but this is ugly) ```python from pytest_django.fixtures import live_server as orig_live_server...

@danielquinn but [setup.py still contains](https://github.com/farhan0581/django-admin-autocomplete-filter/blob/pre_release/setup.py#L25) LGPLv3...

>there would be no way to coerce a None value of a field that is eventually allowed to be None Good argument Perhaps the current behavior is good, but please...

+1 Also it is required for non-english projects, like this: ``` python { "name": lazy_gettext("It seems that the user name is too complicated! Maybe you try something simpler?") } #...

I found a temporary workaround for 0.10: ``` python import cerberus class CustomErrorHandler(cerberus.errors.BasicErrorHandler): def __init__(self, tree=None, custom_messages=None): super(CustomErrorHandler, self).__init__(tree) self.custom_messages = custom_messages or {} def format_message(self, field, error): tmp =...

@funkyfuture what if I wish to set different messages for different data types? For example, "Username is invalid" for username field and "Email is invalid" for email field. In the...