From 95f3ccb773adba0594c295004e1e71b8ecd0ada7 Mon Sep 17 00:00:00 2001 From: Henning Kleen Date: Tue, 26 Jul 2022 10:27:01 +0200 Subject: [PATCH] Update user agent string to pretend being a recent version of Firefox --- kibot/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/misc.py b/kibot/misc.py index 733e68c9..3c9aa8a9 100644 --- a/kibot/misc.py +++ b/kibot/misc.py @@ -241,7 +241,7 @@ SILK_COLORS = {'black': "0b1013", 'white': "d5dce4"} # KiCad 6 uses IUs for SVGs, but KiCad 5 uses a very different scale based on inches KICAD5_SVG_SCALE = 116930/297002200 # Some browser name to pretend -USER_AGENT = 'Mozilla/5.0 (Windows NT 5.2; rv:2.0.1) Gecko/20100101 Firefox/4.0.1' +USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0' class Rect(object):