diff options
author | Chris Lumens <clumens@redhat.com> | 2007-02-26 15:16:46 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-02-26 15:16:46 +0000 |
commit | d43e716a797389c2b9e674b606c0824b9b8aa743 (patch) | |
tree | 9cc4b4be0c8b81df89dac3fac96c835109ffd419 | |
parent | 19aca72d2f94a4825cc8eaf9212396dae7d93a1c (diff) | |
download | anaconda-d43e716a797389c2b9e674b606c0824b9b8aa743.tar.gz anaconda-d43e716a797389c2b9e674b606c0824b9b8aa743.tar.xz anaconda-d43e716a797389c2b9e674b606c0824b9b8aa743.zip |
Simplify string (#229959).
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | iw/autopart_type.py | 3 | ||||
-rw-r--r-- | iw/task_gui.py | 3 |
3 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2007-02-26 Chris Lumens <clumens@redhat.com> + + * iw/autopart_type.py (PartitionTypeWindow.addIscsiDrive): Simplify + string (#229959). + * iw/task_gui.py (TaskWindow._addRepo): Likewise. + 2007-02-23 Dave Lehman <dlehman@redhat.com> * yuminstall.py (selectBestKernel): actually select kernel-xen-devel diff --git a/iw/autopart_type.py b/iw/autopart_type.py index 27809c96e..e110c1867 100644 --- a/iw/autopart_type.py +++ b/iw/autopart_type.py @@ -135,8 +135,7 @@ class PartitionTypeWindow(InstallWindow): initiator.strip() if len(initiator) == 0: self.intf.messageWindow(_("Invalid Initiator Name"), - _("You must provide a non-zero length " - "initiator name.")) + _("You must provide an initiator name.")) continue self.anaconda.id.iscsi.initiator = initiator diff --git a/iw/task_gui.py b/iw/task_gui.py index 715c500ab..90b542486 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -120,8 +120,7 @@ class TaskWindow(InstallWindow): reponame.strip() if len(reponame) == 0: self.intf.messageWindow(_("Invalid Repository Name"), - _("You must provide a non-zero length " - "repository name.")) + _("You must provide a repository name.")) continue repourl = dxml.get_widget("urlEntry").get_text() |