diff options
Diffstat (limited to 'examples2/dclock.py')
| -rwxr-xr-x | examples2/dclock.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/examples2/dclock.py b/examples2/dclock.py index eb4e990..302d454 100755 --- a/examples2/dclock.py +++ b/examples2/dclock.py @@ -47,7 +47,7 @@ class DigitalClock(TQLCDNumber):        s[2] = ' '      if s[0] == '0':        s[0] = ' ' -    s = string.join(s,'') +    s = ''.join(s)      self.display(s)  a = TQApplication(sys.argv) | 
