Skip to content

Commit 254d6f7

Browse files
committed
Removed some debug statements.
- Legacy-Id: 6290
1 parent b685a68 commit 254d6f7

3 files changed

Lines changed: 0 additions & 7 deletions

File tree

ietf/dbtemplate/forms.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@ class DBTemplateForm(forms.ModelForm):
1212
def clean_content(self):
1313
try:
1414
content = self.cleaned_data['content']
15-
debug.show('type(content)')
16-
debug.show('content')
1715
if self.instance.type.slug == 'rst':
1816
return_code = RSTTemplate(content).render(Context({}))
19-
debug.show('return_code')
2017
elif self.instance.type.slug == 'django':
2118
DjangoTemplate(content).render(Context({}))
2219
elif self.instance.type.slug == 'plain':

ietf/help/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ def index(request):
2525

2626
def state(request, doc, type=None):
2727
slug = "%s-%s" % (doc,type) if type else doc
28-
debug.show('slug')
2928
statetype = get_object_or_404(StateType, slug=slug)
3029
states = State.objects.filter(used=True, type=statetype).order_by('order')
3130
return render_to_response('help/states.html', {"doc": doc, "type": statetype, "states":states},

ietf/nomcom/views.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ def index(request):
4040
nomcom_list = Group.objects.filter(type__slug='nomcom').order_by('acronym')
4141
for nomcom in nomcom_list:
4242
year = nomcom.acronym[6:]
43-
debug.show('year')
4443
try:
4544
year = int(year)
4645
except ValueError:
4746
year = None
48-
debug.show('year')
4947
nomcom.year = year
5048
nomcom.label = "%s/%s" % (year, year+1)
5149
if year in [ 2005, 2006, 2007, 2008, 2009, 2010 ]:
@@ -60,7 +58,6 @@ def index(request):
6058
nomcom.ann_url = "/ann/nomcom/#%4d" % year
6159
else:
6260
nomcom.ann_url = None
63-
debug.show('nomcom.url')
6461
return render_to_response('nomcom/index.html',
6562
{'nomcom_list': nomcom_list,}, RequestContext(request))
6663

0 commit comments

Comments
 (0)