From b32021a8b4e26e04bd1578f6d70e74160cd16d73 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 21 Aug 2019 21:49:43 -0400 Subject: [PATCH] MSG91 minor bugfixes; refs #141 --- apprise/plugins/NotifyMSG91.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apprise/plugins/NotifyMSG91.py b/apprise/plugins/NotifyMSG91.py index bce9c44f..ffd43126 100644 --- a/apprise/plugins/NotifyMSG91.py +++ b/apprise/plugins/NotifyMSG91.py @@ -118,7 +118,7 @@ class NotifyMSG91(NotifyBase): 'name': _('Authentication Key'), 'type': 'string', 'required': True, - 'regex': (r'AC[a-z0-9]+', 'i'), + 'regex': (r'[a-z0-9]+', 'i'), }, 'target_phone': { 'name': _('Target Phone No'), @@ -149,7 +149,7 @@ class NotifyMSG91(NotifyBase): 'default': MSG91Route.TRANSACTIONAL, }, 'country': { - 'name': _('Route'), + 'name': _('Country'), 'type': 'choice:int', 'values': MSG91_COUNTRIES, },