From 562f1c3fb596ea187a67c4983f06bf145bed4b9c Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Fri, 25 Apr 2025 19:13:01 -0600 Subject: [PATCH] Switch consumable URL to prod --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 37ed4a6..cafdf88 100755 --- a/main.py +++ b/main.py @@ -433,7 +433,7 @@ def print_consumable_label(item): logging.info('Printing consumable label item: %s', item) encodeded = urllib.parse.quote(item) - url = 'https://spaceport.dns.t0.vc/out-of-stock?item=' + encodeded + url = 'https://my.protospace.ca/out-of-stock?item=' + encodeded qr = qrcode.make(url, version=6, box_size=10) im.paste(qr, (800, 280))