refactoring

This commit is contained in:
Vinicius Moreira
2019-07-30 18:29:15 -03:00
parent 9cc0d8adad
commit 73171079ee
2 changed files with 6 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
import glob
import locale
import re
from fpakman_api.util import system
from fpakman_api.util.resource import get_fpakman_logo_path
from fpakman_api.util.resource import get_path
from fpakman import ROOT_DIR, __app_name__
from fpakman.core import resource
import glob
import re
HTML_RE = re.compile(r'<[^>]+>')
@@ -49,5 +49,5 @@ def strip_html(string: str):
return HTML_RE.sub('', string)
def notify_user(msg: str, icon_path: str = get_fpakman_logo_path(ROOT_DIR)):
def notify_user(msg: str, icon_path: str = get_path('img/logo.svg', ROOT_DIR)):
system.notify_user(msg=msg, app_name=__app_name__, icon_path=icon_path)