Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
vmt committed Jan 10, 2012
1 parent 235b02c commit e07fc94
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions task/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def main(request):

@login_required
def add(request):
print "This is an edit!"
if request.method != 'POST':
form = TaskForm()
else:
Expand All @@ -67,7 +66,6 @@ def edit(request, taskid):
form = TaskForm(instance=task)
else:
form = TaskForm(request.POST, instance=task)
print "This is an edit!"
if form.is_valid():
task = form.save(commit=False)
task.modifiedon = datetime.now()
Expand Down Expand Up @@ -169,7 +167,6 @@ def annotate_tag(self, tag):
'url' : self.get_tag_url(tag) })

def annotate_status(self, status):
print status
return ({
'label' : status,
'selected' : True if status in self.statuses else False,
Expand Down

0 comments on commit e07fc94

Please sign in to comment.