mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-22 14:41:39 +00:00
Removed appname duplication between dg_cocoa and core_*.__init__.
This commit is contained in:
@@ -11,6 +11,7 @@ from hscommon.cocoa import signature
|
|||||||
|
|
||||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||||
from core_me.app_cocoa import DupeGuruME
|
from core_me.app_cocoa import DupeGuruME
|
||||||
|
from core_me import __appname__
|
||||||
from core.scanner import ScanType
|
from core.scanner import ScanType
|
||||||
|
|
||||||
class PyDupeGuru(PyDupeGuruBase):
|
class PyDupeGuru(PyDupeGuruBase):
|
||||||
@@ -61,5 +62,5 @@ class PyDupeGuru(PyDupeGuruBase):
|
|||||||
|
|
||||||
#---Registration
|
#---Registration
|
||||||
def appName(self):
|
def appName(self):
|
||||||
return "dupeGuru Music Edition"
|
return __appname__
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ from hscommon.trans import install_cocoa_trans
|
|||||||
install_cocoa_trans()
|
install_cocoa_trans()
|
||||||
|
|
||||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||||
from core_pe import app_cocoa as app_pe_cocoa
|
from core_pe import app_cocoa as app_pe_cocoa, __appname__
|
||||||
|
|
||||||
class PyDupeGuru(PyDupeGuruBase):
|
class PyDupeGuru(PyDupeGuruBase):
|
||||||
def init(self):
|
def init(self):
|
||||||
@@ -35,5 +35,5 @@ class PyDupeGuru(PyDupeGuruBase):
|
|||||||
|
|
||||||
#---Registration
|
#---Registration
|
||||||
def appName(self):
|
def appName(self):
|
||||||
return "dupeGuru Picture Edition"
|
return __appname__
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ from hscommon.cocoa import signature
|
|||||||
from core.scanner import ScanType
|
from core.scanner import ScanType
|
||||||
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
||||||
from core_se.app_cocoa import DupeGuru
|
from core_se.app_cocoa import DupeGuru
|
||||||
|
from core_se import __appname__
|
||||||
|
|
||||||
class PyDupeGuru(PyDupeGuruBase):
|
class PyDupeGuru(PyDupeGuruBase):
|
||||||
def init(self):
|
def init(self):
|
||||||
@@ -44,5 +45,5 @@ class PyDupeGuru(PyDupeGuruBase):
|
|||||||
|
|
||||||
#---Registration
|
#---Registration
|
||||||
def appName(self):
|
def appName(self):
|
||||||
return "dupeGuru"
|
return __appname__
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user