Skip to content

Commit

Permalink
Strip E in incoming exchagnes view.
Browse files Browse the repository at this point in the history
  • Loading branch information
fosterlynn committed Jun 17, 2016
1 parent 256338a commit 2b7ba14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valuenetwork/valueaccounting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10442,7 +10442,7 @@ def internal_exchanges(request, agent_id=None):
agid = int(value[1:])
selected_agents.append(EconomicAgent.objects.get(id=agid))
else:
selected_categories.append(value)
selected_categories.append(value[1:])
if selected_categories:
for ex in exchanges:
if str(ex.exchange_type.id) in selected_categories:
Expand Down

0 comments on commit 2b7ba14

Please sign in to comment.