From 0597d24859a6e1d602b4d8c2d62596eb6d10d38f Mon Sep 17 00:00:00 2001 From: Michael Elsdoerfer Date: Mon, 22 Nov 2010 13:23:35 +0100 Subject: [PATCH] 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. --- django_tables/app/models.py | 2 ++ 1 file changed, 2 insertions(+) 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. -- 2.26.2