diff options
author | infirit <[email protected]> | 2014-02-05 01:39:10 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-05 01:52:51 +0100 |
commit | 0dbf2f8672579549f09a39fa5c238e8347e3f9dd (patch) | |
tree | b793a77aced2a289047b58fd4f757ad579112f7d /invest-applet/invest | |
parent | 2176a84cfbc158f21a92c8c2d1c26922c217e0df (diff) | |
download | mate-applets-0dbf2f8672579549f09a39fa5c238e8347e3f9dd.tar.bz2 mate-applets-0dbf2f8672579549f09a39fa5c238e8347e3f9dd.tar.xz |
Fix help uri for applets
Diffstat (limited to 'invest-applet/invest')
-rw-r--r-- | invest-applet/invest/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/invest-applet/invest/help.py b/invest-applet/invest/help.py index 81c74fac..4a6b1cd3 100644 --- a/invest-applet/invest/help.py +++ b/invest-applet/invest/help.py @@ -7,7 +7,7 @@ from gi.repository import Gtk from gi.repository import Gdk def show_help(): - Gtk.show_uri(None, "help:invest-applet", Gdk.CURRENT_TIME) + Gtk.show_uri(None, "help:mate-invest-applet", Gdk.CURRENT_TIME) def show_help_section(id): - Gtk.show_uri(None, "help:invest-applet?%s" % id, Gdk.CURRENT_TIME) + Gtk.show_uri(None, "help:mate-invest-applet/%s" % id, Gdk.CURRENT_TIME) |