diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-31 15:56:48 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-31 15:56:48 +0000 |
commit | 515ed3eca51cfd45c538a0044b1eb71b832ed842 (patch) | |
tree | fb1f99dd9aacd172db2f190b93deebff4fa4ade4 | |
parent | de893fb1925c92541b734e510bfadac47c7fd99a (diff) | |
download | anaconda-515ed3eca51cfd45c538a0044b1eb71b832ed842.tar.gz anaconda-515ed3eca51cfd45c538a0044b1eb71b832ed842.tar.xz anaconda-515ed3eca51cfd45c538a0044b1eb71b832ed842.zip |
don't really like those pesky traceback things :)
-rw-r--r-- | iw/partition_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 32afa2b60..fc85801dd 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -563,7 +563,7 @@ class PartitionWindow(InstallWindow): commentstr = "" for (dev, type, mntpt) in formatWarnings: - commentstr = commentstr + + commentstr = commentstr + \ "/dev/%s %s %s\n" % (dev,type,mntpt) commentstr = string.join(formatWarnings, "\n") |