Skip to content

Commit

Permalink
Merge pull request #4892 from dojutsu-user/disable-django-guardian-wa…
Browse files Browse the repository at this point in the history
…rning

Disable django guardian warning
  • Loading branch information
ericholscher committed Dec 26, 2018
2 parents 408172e + c8c5874 commit a3f561d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def USE_PROMOS(self): # noqa
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination', # NOQA
'PAGE_SIZE': 10,
}
SILENCED_SYSTEM_CHECKS = ['fields.W342']
SILENCED_SYSTEM_CHECKS = ['fields.W342', 'guardian.W001']

# Logging
LOG_FORMAT = '%(name)s:%(lineno)s[%(process)d]: %(levelname)s %(message)s'
Expand Down

0 comments on commit a3f561d

Please sign in to comment.