Add a request argument to the html_head signals

This commit is contained in:
Raphael Michel
2015-03-16 01:31:52 +01:00
parent f54515ba0a
commit e20ecb67d8
5 changed files with 6 additions and 5 deletions

View File

@@ -13,5 +13,5 @@ restriction_formset = EventPluginSignal(
This signal is sent out to include code into the HTML <head> tag
"""
html_head = EventPluginSignal(
providing_args=[]
providing_args=["request"]
)