summaryrefslogtreecommitdiff
path: root/Biz/Que
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2025-02-06 17:40:53 -0500
committerBen Sima <ben@bsima.me>2025-02-06 17:40:53 -0500
commit1f9787cf112ebc82be6000c4bd1c09b7dc88c319 (patch)
tree2fdffaa8386d5f931e1b071fd6744ddc02d54a20 /Biz/Que
parent42d9c462002740a6a5cf8edb8fcfd00bcc36bb4b (diff)
Update nixpkgs and stupid fixes
Some things got through the CI system, probably during updates. So I had more stupid little fixes to do. I should really improve bild to the point that these won't happen anymore and builds don't take so long.
Diffstat (limited to 'Biz/Que')
-rwxr-xr-xBiz/Que/Client.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Biz/Que/Client.py b/Biz/Que/Client.py
index 6248a79..4070cdd 100755
--- a/Biz/Que/Client.py
+++ b/Biz/Que/Client.py
@@ -23,11 +23,12 @@ DELAY = 3
BACKOFF = 1
LOGLEVEL = logging.ERROR
-LOG = logging.basicConfig(
+logging.basicConfig(
format="%(asctime)s: %(levelname)s: %(message)s",
level=LOGLEVEL,
datefmt="%Y.%m.%d..%H.%M.%S",
)
+LOG = logging.getLogger(__name__)
def auth(args: argparse.Namespace) -> str | None: