Return if api is not found

This commit is contained in:
Ruud
2013-06-15 21:43:14 +02:00
parent 3bb2a082b7
commit 9bf006f4d3
+1
View File
@@ -46,6 +46,7 @@ class ApiHandler(RequestHandler):
def get(self, route):
if not api.get(route):
self.write('API call doesn\'t seem to exist')
return
kwargs = {}
for x in self.request.arguments: