From 5ee8c2e58583fb789662d986db78be161203cdb0 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Wed, 5 Jan 2011 13:53:34 +0100 Subject: [PATCH] [FIX] There shouldn't be any space between the name and the phone number in the callerID instruction to Asterisk. Patch courtesy of Marcel van der Boom. Thanks for your feedback ! --- asterisk_click2dial/scripts/get_cid_name.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asterisk_click2dial/scripts/get_cid_name.py b/asterisk_click2dial/scripts/get_cid_name.py index 9992ef9..3173fd2 100755 --- a/asterisk_click2dial/scripts/get_cid_name.py +++ b/asterisk_click2dial/scripts/get_cid_name.py @@ -156,7 +156,7 @@ def main(options, arguments): sys.stdout.write('VERBOSE "CallerID Name = %s"\n' % res_ascii) sys.stdout.flush() - sys.stdout.write('SET CALLERID "%s" <%s>\n' % (res_ascii, input_cid_number)) + sys.stdout.write('SET CALLERID "%s"<%s>\n' % (res_ascii, input_cid_number)) sys.stdout.flush() if __name__ == '__main__':