> diff --git a/iw/task_gui.py b/iw/task_gui.py > index 061edb7..b9b2029 100644 > --- a/iw/task_gui.py > +++ b/iw/task_gui.py > @@ -217,10 +217,13 @@ class RepoEditor: > else: > self.proxyCheckbox.set_active(False) > self.proxyTable.set_sensitive(False) > - elif self.anaconda.methodstr.startswith("nfs"): > - (method, server, dir) = self.anaconda.methodstr.split(":") > - self.nfsServerEntry.set_text(server) > - self.nfsPathEntry.set_text(dir) > + elif self.anaconda.methodstr.startswith("nfs:"): > + method_server_dir = self.anaconda.methodstr.split(":") > + try: > + self.nfsServerEntry.set_text(method_server_dir[1]) > + self.nfsPathEntry.set_text(method_server_dir[2]) > + except IndexError: > + pass > self.nfsOptionsEntry.set_text("") > elif self.anaconda.methodstr.startswith("cdrom:"): > pass How do we get this far with a malformed methodstr setting? I'd prefer to handle it in setMethodstr in anaconda if possible, and then make sure everywhere is using that method. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list