From b213e3cb25154c004c592245435a65de10aa60b8 Mon Sep 17 00:00:00 2001 From: David Forrester Date: Tue, 30 Sep 2014 21:45:29 +1000 Subject: [PATCH] Fix a typo preventing calibre from recognizing the new Kobo Aura H20 I made a typo when adding the device id for the new Kobo Aura H20. Fixes #1375748 [Correct device id for Kobo Aura H20](https://bugs.launchpad.net/calibre/+bug/1375748) --- src/calibre/devices/kobo/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/kobo/driver.py b/src/calibre/devices/kobo/driver.py index 866534b848..06e634cedb 100644 --- a/src/calibre/devices/kobo/driver.py +++ b/src/calibre/devices/kobo/driver.py @@ -1364,7 +1364,7 @@ class KOBOTOUCH(KOBO): AURA_PRODUCT_ID = [0x4203] AURA_HD_PRODUCT_ID = [0x4193] - AURA_H2O_PRODUCT_ID = [0x4293] + AURA_H2O_PRODUCT_ID = [0x4213] GLO_PRODUCT_ID = [0x4173] MINI_PRODUCT_ID = [0x4183] TOUCH_PRODUCT_ID = [0x4163]