summaryrefslogtreecommitdiffstats
path: root/iw/GroupSelector.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-09-10 11:14:38 -0400
committerChris Lumens <clumens@redhat.com>2008-09-10 11:14:38 -0400
commit0bdf74f0b27b5dd9fc13c1e53a0826cbae5c7206 (patch)
treedcd8cfcad16238f0e4434b981e205fdd08839145 /iw/GroupSelector.py
parent85fd0541269cc425cd3bc45675db3d7ce4aa9b31 (diff)
downloadanaconda-0bdf74f0b27b5dd9fc13c1e53a0826cbae5c7206.tar.gz
anaconda-0bdf74f0b27b5dd9fc13c1e53a0826cbae5c7206.tar.xz
anaconda-0bdf74f0b27b5dd9fc13c1e53a0826cbae5c7206.zip
sys.stderr.write needs a newline.
Diffstat (limited to 'iw/GroupSelector.py')
-rw-r--r--iw/GroupSelector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/GroupSelector.py b/iw/GroupSelector.py
index d3571345b..4a60d7899 100644
--- a/iw/GroupSelector.py
+++ b/iw/GroupSelector.py
@@ -65,7 +65,7 @@ def sanitizeString(s, translate = True):
try:
s = unicode(s, "utf-8")
except UnicodeDecodeError, e:
- sys.stderr.write("Unable to convert %s to a unicode object: %s" % (s, e))
+ sys.stderr.write("Unable to convert %s to a unicode object: %s\n" % (s, e))
return ""
return s