added isdigit in correct syntax
git-svn-id: http://www.neo1973-germany.de/svn@111 46df4e5c-bc4e-4628-a0fc-830ba316316d
This commit is contained in:
parent
5064c05317
commit
b3b00bb611
1 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ class MainScreen(EdjeGroup):
|
||||||
@edje.decorators.signal_callback("dialer_send", "*")
|
@edje.decorators.signal_callback("dialer_send", "*")
|
||||||
def on_edje_signal_numberkey_triggered(self, emission, source):
|
def on_edje_signal_numberkey_triggered(self, emission, source):
|
||||||
if self.res['code'] != 'READY':
|
if self.res['code'] != 'READY':
|
||||||
if len(self.text) < 4 and source in ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9"):
|
if len(self.text) < 4 and source.isdigit():
|
||||||
self.text.append(source)
|
self.text.append(source)
|
||||||
print ''.join(self.text)
|
print ''.join(self.text)
|
||||||
self.part_text_set("numberdisplay_text", '*' * len(self.text))
|
self.part_text_set("numberdisplay_text", '*' * len(self.text))
|
||||||
|
@ -143,7 +143,7 @@ class MainScreen(EdjeGroup):
|
||||||
self.part_text_set("numberdisplay_text", "please dial")
|
self.part_text_set("numberdisplay_text", "please dial")
|
||||||
self.text = []
|
self.text = []
|
||||||
else:
|
else:
|
||||||
if source in ("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "#", "*"):
|
if source.isdigit() or source in ('*', '#'):
|
||||||
self.text.append(source)
|
self.text.append(source)
|
||||||
print ''.join(self.text)
|
print ''.join(self.text)
|
||||||
self.part_text_set("numberdisplay_text", "".join(self.text))
|
self.part_text_set("numberdisplay_text", "".join(self.text))
|
||||||
|
|
Loading…
Reference in a new issue