From 1352938504539a649b185ca6b504e85e3d0203d7 Mon Sep 17 00:00:00 2001 From: Kevin Banks Date: Thu, 4 Feb 2021 16:35:42 -0600 Subject: [PATCH] Changed URL --- tools/gen_usb_descriptor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/gen_usb_descriptor.py b/tools/gen_usb_descriptor.py index bb4ecda6f4..80dddeb001 100644 --- a/tools/gen_usb_descriptor.py +++ b/tools/gen_usb_descriptor.py @@ -22,7 +22,8 @@ ALL_HID_DEVICES_SET=frozenset(ALL_HID_DEVICES.split(',')) # Digitizer works on Linux but conflicts with mouse, so omit it. DEFAULT_HID_DEVICES='KEYBOARD,MOUSE,CONSUMER,GAMEPAD' -DEFAULT_WEBUSB_URL = 'www.circuitpython.org' # In the future, this may become a specific landing page +# In the following URL, don't include the https:// because that prefix gets added automatically +DEFAULT_WEBUSB_URL = 'circuitpython.org' # In the future, this may become a specific landing page parser = argparse.ArgumentParser(description='Generate USB descriptors.') parser.add_argument('--highspeed', default=False, action='store_true',