aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/upc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/upc.py b/modules/upc.py
index c8da6083..90b313b5 100644
--- a/modules/upc.py
+++ b/modules/upc.py
@@ -6,7 +6,8 @@ class Module(object):
_name = "UPC"
def __init__(self, bot):
self.bot = bot
- bot.events.on("received").on("command").on("upc", "ean").hook(
+ bot.events.on("received").on("command").on(
+ "upc", "ean", "gtin").hook(
self.upc, min_args=1, usage="<UPC|EAN>",
help="Look up a product by UPC or EAN")