From a3bc82fbd2514d244d81f5751be57d9b6c249bf5 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Wed, 29 Nov 2023 17:10:09 +0100 Subject: [PATCH] FIX: Make debugging outpu compatible to Python 3.7 --- src/caoscrawler/crawl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/caoscrawler/crawl.py b/src/caoscrawler/crawl.py index d422b0d6..82e573cb 100644 --- a/src/caoscrawler/crawl.py +++ b/src/caoscrawler/crawl.py @@ -651,7 +651,7 @@ class Crawler(object): # TODO: This resolves # https://gitlab.indiscale.com/caosdb/customers/leibniz-zmt/management/-/issues/258, # but why? - print(f"{record=}\n") + print(f"Record: {record}\n") continue if len(flat) > 0: -- GitLab