home · contact · privacy
Add foreign key restraints, expand and fix tests, add deletion and forking.
[misc] / unite.py
index de8be075076a078b733e636c9b99509b1019ff6b..8f90e67ea82be45774467f470d7186904bc136d1 100644 (file)
--- a/unite.py
+++ b/unite.py
@@ -45,7 +45,6 @@ class UnitedRequestHandler(PlomHandler):
         path_toks = parsed_url.path.split('/')
         while len(path_toks) > 0:
             target_path = '/'.join(path_toks)
-            print(target_path)
             if target_path in self.routes['GET'].keys():                
                 self.routes['GET'][target_path](self)
                 return