Small fix in inventory sticker

This commit is contained in:
Mario Voigt 2021-01-29 11:11:02 +01:00
parent 6642fd5abc
commit 1817e6799d
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<param name="main_tabs" type="notebook">
<page name="tab_active" gui-text="Active">
<label appearance="header">Inventory Download</label>
<param name="server_address" type="string" gui-text="inventory.csv URL">https://things.fablabchemnitz.de/flc/inventory.csv</param>
<param name="server_address" type="string" gui-text="inventory.csv URL">https://the.domain.de/items.csv</param>
<param name="htuser" type="string" gui-text="Basic Auth User">User</param>
<param name="htpassword" type="string" gui-text="Basic Auth Password">Password</param>
<label appearance="header">Sticker Customization</label>

View File

@ -360,7 +360,7 @@ class InventorySticker(inkex.Effect):
def __init__(self):
inkex.Effect.__init__(self)
self.arg_parser.add_argument("--main_tabs")
self.arg_parser.add_argument("--server_address", default="https://the.domain.de/inventory.csv")
self.arg_parser.add_argument("--server_address", default="https://the.domain.de/items.csv")
self.arg_parser.add_argument("--htuser", default="user")
self.arg_parser.add_argument("--htpassword", default="password")
self.arg_parser.add_argument("--sticker_ids", default="*")