Skip to content

Commit

Permalink
fixes test
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Sep 11, 2018
1 parent e371eea commit 21361c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etools_datamart/apps/multitenant/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_initial(self):

def get_success_url(self):
self.params = dict(self.request.GET.items())
_from = self.request.GET['from']
_from = self.request.GET.getlist('from', ['/'])[0]
if '_all' in self.selected:
qs = self.get_query_string({}, ['from', 'country_name'])
else:
Expand Down

0 comments on commit 21361c4

Please sign in to comment.