diff options
| author | 2018-10-09 22:15:40 +0100 | |
|---|---|---|
| committer | 2018-10-09 22:15:40 +0100 | |
| commit | 88429792050a943baf1d19700acb71b821591d6d (patch) | |
| tree | d92ae3e8ec99f24021422dcbafdd2abb0130a7e1 | |
| parent | Add modules/eval_lua.py (diff) | |
Add "GTIN" to modules/upc.py error message, to better denote that we support
UPC.
| -rw-r--r-- | modules/upc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upc.py b/modules/upc.py index 97729058..7cbcbde4 100644 --- a/modules/upc.py +++ b/modules/upc.py @@ -13,7 +13,7 @@ class Module(ModuleManager.BaseModule): """ arg_len = len(event["args_split"][0]) if not arg_len == 12 and not arg_len == 13: - event["stderr"].write("Invalid UPC/EAN provided") + event["stderr"].write("Invalid UPC/EAN/GTIN provided") return page = utils.http.get_url(UPCITEMDB_URL, |
