summaryrefslogtreecommitdiffstats
path: root/src/fringlib/launch.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/fringlib/launch.py')
-rwxr-xr-xsrc/fringlib/launch.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fringlib/launch.py b/src/fringlib/launch.py
index 8e3b107..f420768 100755
--- a/src/fringlib/launch.py
+++ b/src/fringlib/launch.py
@@ -17,11 +17,12 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-# Copyright Lennart Poettering, 2006
+# Copyright Lennart Poettering, Frederic Back 2006
import sys, os
import gtk
import fringui
+import gnomevfs
if __name__ == "__main__":
@@ -30,6 +31,10 @@ if __name__ == "__main__":
else:
tree_path = os.path.expanduser("~")
+ # first parameter can be a gnomevfs uri or a local path
+ #try: uri = URI(tree_path)
+ #except: uri = get_uri_from_local_path(tree_path)
+
ui = fringui.UI(tree_path)
gtk.gdk.threads_init()