Skip to content

Commit 1b50432

Browse files
committed
Removed debug statements.
- Legacy-Id: 9411
1 parent 7488ade commit 1b50432

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

ietf/help/views.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ def state_index(request):
2525

2626
def state(request, doc, type=None):
2727
if type:
28-
debug.show('type')
2928
streams = [ s.slug for s in StreamName.objects.all() ]
30-
debug.show('streams')
3129
if type in streams:
3230
type = "stream-%s" % type
33-
debug.show('type')
3431
slug = "%s-%s" % (doc,type) if type else doc
3532
statetype = get_object_or_404(StateType, slug=slug)
3633
states = State.objects.filter(used=True, type=statetype).order_by('order')

0 commit comments

Comments
 (0)