diff options
author | Andrew Gaffney <agaffney@gentoo.org> | 2007-03-27 17:29:25 +0000 |
---|---|---|
committer | Andrew Gaffney <agaffney@gentoo.org> | 2007-03-27 17:29:25 +0000 |
commit | 1ffea9957d02b56d10de8003180f9520e347028e (patch) | |
tree | 2a80610a0d409986e5fde2e3ade95acdb4b3d290 | |
parent | list all available partitions and automatically populate the type field when ... (diff) | |
download | gli-1ffea9957d02b56d10de8003180f9520e347028e.tar.gz gli-1ffea9957d02b56d10de8003180f9520e347028e.tar.bz2 gli-1ffea9957d02b56d10de8003180f9520e347028e.zip |
remove description text from top
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1842 f8877401-5920-0410-a79b-8e2d7e04ca0d
-rw-r--r-- | src/fe/gtk/NetworkMounts.py | 9 |
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']]) |