Skip to content

Commit

Permalink
Fix error 500 on booking page
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaylorhq committed Mar 24, 2019
1 parent 624128f commit b64d6cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tickets/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1120,9 +1120,9 @@ def book_landing(request, show_id):
pricing = models.FringePricing.objects.all()[0]
# External Pricing
elif show.category.slug == 'external':
pricing = models.ExternalPricing.objects.get(show_id=show_name)
pricing = models.ExternalPricing.objects.get(show_id=show.id)
elif show.category.slug == 'stuff':
pricing = models.StuFFPricing.objects.get(show_id=show_name)
pricing = models.StuFFPricing.objects.get(show_id=show.id)

season_pricing = {}
season_model = models.SeasonTicketPricing.objects.first()
Expand Down

0 comments on commit b64d6cf

Please sign in to comment.