Skip to content

Commit

Permalink
Update to new py-elm-extensions AboutWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
rbtylee committed Jul 30, 2017
1 parent 41543be commit c617892
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions exterminator
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ try:
except:
import queue as Queue

from elmextensions import AboutWindow
from elmextensions import AboutWindow, InstanceError
from elmextensions import SortedList

EXPAND_BOTH = EVAS_HINT_EXPAND, EVAS_HINT_EXPAND
Expand Down Expand Up @@ -344,10 +344,13 @@ class TaskManager(Box):
self.gettingData = False

def showAbout(self, obj=False):
AboutWindow(self, title="Exterminator", standardicon="utilities-system-monitor", \
try:
AboutWindow(self, title="Exterminator", standardicon="utilities-system-monitor", \
version=__version__, authors=AUTHORS, \
licen=LICENSE, webaddress=__github__, \
info=INFO)
except InstanceError:
pass

class Process(list):
def __init__(self, parent, data):
Expand Down

0 comments on commit c617892

Please sign in to comment.