diff options
author | bfox <bfox> | 2000-12-05 16:08:11 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-12-05 16:08:11 +0000 |
commit | 12709acb437f1ec85713ede2e9c7bd4baab7cf9a (patch) | |
tree | 3bc740b2fe71f24ac4d371d25583f6ce44329a19 /kbd.py | |
parent | 566587df25d7efaa2473757ea909974c2316395a (diff) | |
download | anaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.tar.gz anaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.tar.xz anaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.zip |
Removed debug statements
Diffstat (limited to 'kbd.py')
-rw-r--r-- | kbd.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -228,9 +228,6 @@ class Keyboard (SimpleConfigFile): self.info["KEYTABLE"] = keytable def setfromx (self, model, layout, variant): - print "Inside setfromx" - print "Values are", model, layout, variant - if self.type == "PC": mapping = Keyboard.x2console else: @@ -247,7 +244,6 @@ class Keyboard (SimpleConfigFile): lay = key; if model == mod and layout == lay: #--Check to see if keyboard is German and has deadkeys disabled - print "Inside compare", mod, lay, variant if lay == "de" and variant == "nodeadkeys": self.info["KEYTABLE"] = "de-latin1-nodeadkeys" else: |