summaryrefslogtreecommitdiffstats
path: root/kbd.py
diff options
context:
space:
mode:
authorbfox <bfox>2000-12-06 17:05:23 +0000
committerbfox <bfox>2000-12-06 17:05:23 +0000
commitd71d475fa81fbfb1672cb533a096255969f2616d (patch)
tree875e741f29f205b0fe58a2873b8d9476ce69c438 /kbd.py
parenteb9c5e157738e00561920d0f92ef092cf9c9d5f8 (diff)
downloadanaconda-d71d475fa81fbfb1672cb533a096255969f2616d.tar.gz
anaconda-d71d475fa81fbfb1672cb533a096255969f2616d.tar.xz
anaconda-d71d475fa81fbfb1672cb533a096255969f2616d.zip
Removed some print statements.
Diffstat (limited to 'kbd.py')
-rw-r--r--kbd.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbd.py b/kbd.py
index 1b91d6444..bfdfa0de3 100644
--- a/kbd.py
+++ b/kbd.py
@@ -230,7 +230,7 @@ class Keyboard (SimpleConfigFile):
self.info["KEYTABLE"] = keytable
def setfromx (self, model, layout, variant):
- print "Inside setfromx -------", model, layout, variant
+# print "Inside setfromx -------", model, layout, variant
if self.type == "PC":
mapping = Keyboard.x2console
else:
@@ -242,16 +242,16 @@ class Keyboard (SimpleConfigFile):
for key in keys:
if type(key) == type(()):
(mod, lay) = key
- print "Inside if", mod, lay
+# print "Inside if", mod, lay
else:
mod = model
lay = key;
- print "Inside else", mod, lay
+# print "Inside else", mod, lay
if model == mod and layout == lay:
#--Check to see if keyboard is German and has deadkeys disabled
- print mod, lay
+# print mod, lay
if lay == "de" and variant == "nodeadkeys":
self.info["KEYTABLE"] = "de-latin1-nodeadkeys"