diff options
Diffstat (limited to 'examples3/dclock.py')
-rwxr-xr-x | examples3/dclock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples3/dclock.py b/examples3/dclock.py index eb4e990..302d454 100755 --- a/examples3/dclock.py +++ b/examples3/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) |