From 69d115acfc819c74916600cfccf6fffafbb9335c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B5nis=20Kevvai?= Date: Fri, 2 May 2025 10:59:36 +0300 Subject: [PATCH] Fixes --- .gitignore | 2 +- jelly.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 30bd623..119423d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ .env - +.ropeproject diff --git a/jelly.py b/jelly.py index 69e0cc4..f53a623 100644 --- a/jelly.py +++ b/jelly.py @@ -27,7 +27,7 @@ def main(): 'name': jelly_name, }).encode() - print(f"Listening for JellyFin client discovery broadcasts") + print("Listening for JellyFin client discovery broadcasts") print('Address: "%(addr)s", Id: "%(id)s", Name: "%(name)s"' % { 'addr': jelly_addr, 'id': jelly_id, @@ -51,4 +51,3 @@ def main(): if __name__ == "__main__": main() -