Merge pull request #287 from danielwelch/master

fixing entry_points annotation to expose class rather than module
This commit is contained in:
Ilan Steemers
2018-01-16 23:46:53 +01:00
committed by GitHub

View File

@@ -59,8 +59,8 @@ setup(
],
entry_points={
'djangoq.errorreporters': [
'rollbar = django_q_rollbar.Rollbar',
'sentry = django_q_sentry.Sentry',
'rollbar = django_q_rollbar:Rollbar',
'sentry = django_q_sentry:Sentry',
]
},
extras_require={