Commit 234c19b80912a21916de8ef1167f589906da4a0f

Authored by Sergio Oliveira
1 parent bf27e822
Exists in 1.12.x

Updated revproxy requirement to 0.9.8

Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
colab/plugins/views.py
... ... @@ -23,6 +23,7 @@ class ColabProxyView(DiazoProxyView):
23 23 raise NotImplementedError('app_label attribute must be set')
24 24  
25 25 def dispatch(self, request, *args, **kwargs):
  26 + self.request = request
26 27  
27 28 if request.user.is_authenticated():
28 29  
... ...
setup.py
... ... @@ -12,7 +12,7 @@ REQUIREMENTS = [
12 12 'Whoosh>=2.7.0',
13 13  
14 14 # revproxy
15   - 'django-revproxy[diazo]>=0.9.5',
  15 + 'django-revproxy[diazo]>=0.9.8',
16 16  
17 17 # Async Signals
18 18 'celery[redis]>=3.1.2',
... ...