Browse Source

Merge pull request #90 from Xender/patch-1

Nuke Python3-incompatible debug print
Peter Justin 10 years ago
parent
commit
b61dc0dec5
1 changed files with 0 additions and 1 deletions
  1. 0 1
      flaskbb/api/users.py

+ 0 - 1
flaskbb/api/users.py

@@ -92,7 +92,6 @@ class UserAPI(Resource):
         super(UserAPI, self).__init__()
 
     def get(self, id):
-        print auth.username()
         user = User.query.filter_by(id=id).first()
 
         if not user: