diff --git a/app.py b/app.py index d1e7807..b5ec528 100644 --- a/app.py +++ b/app.py @@ -157,11 +157,8 @@ def ships(request): def ship(request,ship=None): global DESC_PRE_SHIPS if ship is None: return Response(Status.BAD_REQUEST,"Bad Request") - print(ship) ship_unquoted = urllib.parse.unquote(ship) - print(ship_unquoted) if not os.path.isdir(os.path.join("/var/gopher",ship_unquoted)): return Response(Status.NOT_FOUND,"Not Found") - print("generator") def __generator(): description = os.path.join("/var/gopher",ship_unquoted,".description") if os.path.exists(description):