From 7ffa4f44002ddd151bdc509a3173575d82fcf580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Thu, 9 Oct 2014 18:58:14 +0200 Subject: [PATCH] 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) -- 2.1.2