From: Michael Elsdoerfer Date: Mon, 22 Nov 2010 12:23:35 +0000 (+0100) Subject: Make sure the models.py file, which we need to be loaded by Django as an X-Git-Tag: 0.2.1~3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0597d24859a6e1d602b4d8c2d62596eb6d10d38f;p=django-tables2.git Make sure the models.py file, which we need to be loaded by Django as an app, is not empty. Apparently this causes rpmlint to complain when packaging for Fedora. --- diff --git a/django_tables/app/models.py b/django_tables/app/models.py index e69de29..6a28b36 100644 --- a/django_tables/app/models.py +++ b/django_tables/app/models.py @@ -0,0 +1,2 @@ +# Empty models.py file required for Django +# INSTALLED_APPS loading.