diff options
| author | Nakidai <nakidai@disroot.org> | 2024-10-27 20:35:54 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-10-27 20:35:54 +0300 |
| commit | bb42cbadc78c81a185a6ebfbc32e5e34cb87f646 (patch) | |
| tree | f7dac2f3a4302d4cf0525fd26b490e6297530b4f | |
| parent | 80e9fdfd854fb3af4f36f6a31200582a8cd61721 (diff) | |
| download | petthecord-bb42cbadc78c81a185a6ebfbc32e5e34cb87f646.tar.gz petthecord-bb42cbadc78c81a185a6ebfbc32e5e34cb87f646.zip | |
Remove debug print
| -rw-r--r-- | src/petthecord/server.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/petthecord/server.py b/src/petthecord/server.py index 323d672..d5e31b1 100644 --- a/src/petthecord/server.py +++ b/src/petthecord/server.py @@ -50,7 +50,6 @@ class Server(Application): raise HTTPFound("https://github.com/nakidai/petthecord") async def petpet(self, request: Request) -> StreamResponse: - print(request) try: uid = int(request.match_info["uid"][:request.match_info["uid"].find('.')]) except ValueError: |