Skip to content

Commit

Permalink
removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgaspar committed Jul 11, 2015
1 parent ce7b4bb commit 6a24d20
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions flask_appbuilder/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,8 @@ def action_post(self):
"""
Action method to handle multiple records selected from a list view
"""
print "ACTION POST"
name = request.form['action']
pks = request.form.getlist('rowid')
print request, request.form, name, self.__class__.__name__
if self.appbuilder.sm.has_access(name, self.__class__.__name__):
action = self.actions.get(name)
items = [self.datamodel.get(pk) for pk in pks]
Expand Down

0 comments on commit 6a24d20

Please sign in to comment.