changeset af95fc6752a1 in modules/authentication_sms:default
details:
https://hg.tryton.org/modules/authentication_sms?cmd=changeset;node=af95fc6752a1
description:
Remove 160 chars length constraint for SMS
issue9223
review313281002
diffstat:
res.py | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diffs (11 lines):
diff -r fc41eedee06b -r af95fc6752a1 res.py
--- a/res.py Mon May 04 12:14:40 2020 +0200
+++ b/res.py Sun May 10 11:36:22 2020 +0200
@@ -18,7 +18,6 @@
def send_sms(text, to):
- assert len(text) <= 160, text
if config.has_option('authentication_sms', 'function'):
func = resolve(config.get('authentication_sms', 'function'))
if func: