Remove unnecessary print
diff --git a/gstack/oauth2provider.py b/gstack/oauth2provider.py
index 8eb166f..0c4a980 100644
--- a/gstack/oauth2provider.py
+++ b/gstack/oauth2provider.py
@@ -148,7 +148,6 @@
         return request.headers.get('Authorization')
 
     def validate_access_token(self, access_token, authorization):
-        print 'pp'
         found_access_token = AccessToken.query.get(access_token)
         if found_access_token is not None and found_access_token.data != 'false':
             access_token_data = json.loads(found_access_token.data)