You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
506 B
16 lines
506 B
--- a/src/external.py
|
|
+++ b/src/external.py
|
|
@@ -41,7 +41,11 @@
|
|
_restarted = False
|
|
|
|
def __init__(self):
|
|
- self._extension = CLIENT._iface.get_extension("Log", "journal/activity")
|
|
+ if CLIENT.get_version() >= [0, 8, 99]:
|
|
+ self._extension = CLIENT._iface.get_extension("Histogram", "journal/activity")
|
|
+ else:
|
|
+ self._extension = CLIENT._iface.get_extension("Log", "journal/activity")
|
|
+
|
|
|
|
def _show_error(self):
|
|
dialog = gtk.MessageDialog(
|