From b5d40f6322c687fe9f9de29e4ede4bbc084710f9 Mon Sep 17 00:00:00 2001 From: pycage Date: Wed, 6 Jan 2010 20:52:55 +0000 Subject: [PATCH] fixed typo git-svn-id: file:///svnroot/ussd-widget/trunk@6 d197f4d6-dc93-42ad-8354-0da1f58e353f --- ussd-common/src/usr/lib/python2.5/gsmdecode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ussd-common/src/usr/lib/python2.5/gsmdecode.py b/ussd-common/src/usr/lib/python2.5/gsmdecode.py index a7b5224..f1b727c 100644 --- a/ussd-common/src/usr/lib/python2.5/gsmdecode.py +++ b/ussd-common/src/usr/lib/python2.5/gsmdecode.py @@ -176,7 +176,7 @@ def decode(s, n): elif (0x4 <= hbits <= 0x7): # general data coding indication - return _decode_general_data_coding(s, h, l) + return _decode_general_data_coding(s, hbits, lbits) elif (0x8 <= hbits <= 0xe): # reserved coding group @@ -197,7 +197,7 @@ def _decode_default_alphabet(s): # TODO: we really might have to do 7 bit character unpacking here # ought to be all in the 7 bit GSM character map - chars = [ _GSM_DEFAULT_ALPHABET[ord(c)] for c in s ] + chars = [ GSM_DEFAULT_ALPHABET[ord(c)] for c in s ] u_str = "".join(chars) return u_str.encode("utf-8") -- 1.7.9.5