django-fixturemedia icon indicating copy to clipboard operation
django-fixturemedia copied to clipboard

Simple tool to manage media files for fixtures

Results 6 django-fixturemedia issues
Sort by recently updated
recently updated
newest added

This is an error in newer version of Django (1.10.3). I think this is all that needs done in a few places: ```python try: from django.core.management.base import CommandError, NoArgsCommand except...

Hi, there's issue with matching patterns, if I have html in fixture then I can't match media eg. { "fix1" : "" } can you fix that? eg (?P['"])(?:media://)(?P.*?)(?P=quote)

These are the edits that allow django-fixturemedia to work with Python 3. Replaced .next() on line 38 in collectmedia.py to **next**(). Replaced raw_input on line 46 in the collectmedia.py to...

Hey, what's the license of this? Also, which one do you recommend? This app, https://github.com/shockflash/mediafixtures or https://github.com/duncaningram/django-fixture-media

I feel kinda responsible for this; the FIXTURE_MEDIA_REQUIRE_PREFIX option doesn't actually work. Well, it does what it says, but then when you do ./manage.py loaddata, it will load these file...

- replace deprecated option_list with add_arguments method in management commands - update raw_input to input for Python 3 compatibility - handle apps without __file__ attribute in management commands - replace...