summaryrefslogtreecommitdiffstats
path: root/examples/uimodules
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-01-25 16:21:00 -0600
committerTimothy Pearson <[email protected]>2012-01-25 16:21:00 -0600
commita6ff5f396fd3b7434a72d7dda5cf82d71e728d6c (patch)
tree7567d067dcafc94a9aac172e833c275682401d54 /examples/uimodules
parent56608290d1559b896ded7fd65979ccfc9375963d (diff)
downloadpytde-a6ff5f396fd3b7434a72d7dda5cf82d71e728d6c.tar.gz
pytde-a6ff5f396fd3b7434a72d7dda5cf82d71e728d6c.zip
Fix linear alphabet string errors
Diffstat (limited to 'examples/uimodules')
-rw-r--r--examples/uimodules/uiwidgets.py2
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 ())