aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe/gtk/NetworkMounts.py')
-rw-r--r--src/fe/gtk/NetworkMounts.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/fe/gtk/NetworkMounts.py b/src/fe/gtk/NetworkMounts.py
index 1875dba..ff58050 100644
--- a/src/fe/gtk/NetworkMounts.py
+++ b/src/fe/gtk/NetworkMounts.py
@@ -44,15 +44,6 @@ the 'Delete' button.
vert = gtk.VBox(False, 0)
vert.set_border_width(10)
- content_str = """Here, you will be able to define any network mounts that you want to use during
-and after the installation. For example, you can mount /usr/portage from another box
-on your network so you don't have to 'emerge sync' and store the tree locally. Currently,
-only NFS is supported.
- """
-
- content_label = gtk.Label(content_str)
- vert.pack_start(content_label, expand=False, fill=False, padding=0)
-
self.treedata = gtk.ListStore(gobject.TYPE_INT, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING, gobject.TYPE_STRING)
for i in range(0, len(self.netmounts)):
self.treedata.append([i, self.netmounts[i]['host'], self.netmounts[i]['export'], self.netmounts[i]['type'], self.netmounts[i]['mountpoint'], self.netmounts[i]['mountopts']])