check this out #6979

This commit is contained in:
Serghei Mihai 2015-05-11 16:45:01 +02:00
parent 7b6d9bc58c
commit 4acb0ec624
2 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,10 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import django.apps
class Plugin(object):
def get_apps(self):
return [__name__]
class AppConfig(django.apps.AppConfig):
name = 'subscriptions'
default_app_config = 'combo_plugin_subscriptions.AppConfig'

View File

@ -97,9 +97,6 @@ setup(
install_requires=['django>=1.7, <1.8',
],
zip_safe=False,
entry_points={
'combo.plugin': ['subscriptions = combo_plugin_subscriptions:Plugin'],
},
cmdclass={
'build': build,
'compile_translations': compile_translations,