diff options
Diffstat (limited to 'examples/uimodules/uiwidgets.py')
-rw-r--r-- | examples/uimodules/uiwidgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/uimodules/uiwidgets.py b/examples/uimodules/uiwidgets.py index efbb8a6..6eb2592 100644 --- a/examples/uimodules/uiwidgets.py +++ b/examples/uimodules/uiwidgets.py @@ -136,7 +136,7 @@ class Page1: squeeze.show () def restrict (self, which): - r = {0: "0123456789", 1: "ABCDEFGHIJKLMNOPTQRSTUVWXYZ", 2: "abcdefghijklmnopqrstuvwxyz"} + r = {0: "0123456789", 1: "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 2: "abcdefghijklmnopqrstuvwxyz"} self.restrictlineedit.setValidChars (r [which]) self.validLbl.setText ("Valid: " + self.restrictlineedit.validChars ().latin1 ()) |