summaryrefslogtreecommitdiffstats
path: root/kbd.py
diff options
context:
space:
mode:
authorbfox <bfox>2000-12-05 16:08:11 +0000
committerbfox <bfox>2000-12-05 16:08:11 +0000
commit12709acb437f1ec85713ede2e9c7bd4baab7cf9a (patch)
tree3bc740b2fe71f24ac4d371d25583f6ce44329a19 /kbd.py
parent566587df25d7efaa2473757ea909974c2316395a (diff)
downloadanaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.tar.gz
anaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.tar.xz
anaconda-12709acb437f1ec85713ede2e9c7bd4baab7cf9a.zip
Removed debug statements
Diffstat (limited to 'kbd.py')
-rw-r--r--kbd.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/kbd.py b/kbd.py
index 4eaab1ed8..61a921e6c 100644
--- a/kbd.py
+++ b/kbd.py
@@ -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: