[gnome-applets] invest-applet: various fixes



commit f6f9166df5fdece6643d03555011177caee65ab8
Author: Balló György <ballogyor gmail com>
Date:   Thu Oct 9 18:58:14 2014 +0200

    invest-applet: various fixes
    
    - Fix launch on Arch Linux.
    - Fix opening help.

 invest-applet/invest/__init__.py |    2 +-
 invest-applet/invest/help.py     |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/invest-applet/invest/__init__.py b/invest-applet/invest/__init__.py
index 24fc882..3dcc94b 100644
--- a/invest-applet/invest/__init__.py
+++ b/invest-applet/invest/__init__.py
@@ -8,7 +8,7 @@ import cPickle
 from . import networkmanager
 
 # Autotools set the actual data_dir in defs.py
-from defs import *
+from invest.defs import *
 
 DEBUGGING = False
 
diff --git a/invest-applet/invest/help.py b/invest-applet/invest/help.py
index 2851e54..c8dc59d 100644
--- a/invest-applet/invest/help.py
+++ b/invest-applet/invest/help.py
@@ -2,7 +2,7 @@
 from gi.repository import Gtk, Gdk
 
 def show_help():
-       Gtk.show_uri(None, "ghelp:invest-applet", Gdk.CURRENT_TIME)
+       Gtk.show_uri(None, "help:invest-applet", Gdk.CURRENT_TIME)
 
 def show_help_section(id):
-       Gtk.show_uri(None, "ghelp:invest-applet?%s" % id, Gdk.CURRENT_TIME)
+       Gtk.show_uri(None, "help:invest-applet/%s" % id, Gdk.CURRENT_TIME)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]