mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
Mass Rename: LoadIgnoreList() --> load_ignore_list()
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%4018
This commit is contained in:
parent
57f89183bb
commit
7760ef1b21
@ -40,7 +40,7 @@ class PyDupeGuru(PyApp):
|
|||||||
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
||||||
|
|
||||||
def loadIgnoreList(self):
|
def loadIgnoreList(self):
|
||||||
self.app.LoadIgnoreList()
|
self.app.load_ignore_list()
|
||||||
|
|
||||||
def loadResults(self):
|
def loadResults(self):
|
||||||
self.app.load()
|
self.app.load()
|
||||||
|
@ -42,7 +42,7 @@ class PyDupeGuru(PyApp):
|
|||||||
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
||||||
|
|
||||||
def loadIgnoreList(self):
|
def loadIgnoreList(self):
|
||||||
self.app.LoadIgnoreList()
|
self.app.load_ignore_list()
|
||||||
|
|
||||||
def loadResults(self):
|
def loadResults(self):
|
||||||
self.app.load()
|
self.app.load()
|
||||||
|
@ -179,9 +179,9 @@ class DupeGuru(RegistrableApplication):
|
|||||||
|
|
||||||
def load(self):
|
def load(self):
|
||||||
self._start_job(JOB_LOAD, self._do_load)
|
self._start_job(JOB_LOAD, self._do_load)
|
||||||
self.LoadIgnoreList()
|
self.load_ignore_list()
|
||||||
|
|
||||||
def LoadIgnoreList(self):
|
def load_ignore_list(self):
|
||||||
p = op.join(self.appdata, 'ignore_list.xml')
|
p = op.join(self.appdata, 'ignore_list.xml')
|
||||||
self.scanner.ignore_list.load_from_xml(p)
|
self.scanner.ignore_list.load_from_xml(p)
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ class PyDupeGuru(PyApp):
|
|||||||
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
return self.app.ExportToXHTML(column_ids,xslt_path,css_path)
|
||||||
|
|
||||||
def loadIgnoreList(self):
|
def loadIgnoreList(self):
|
||||||
self.app.LoadIgnoreList()
|
self.app.load_ignore_list()
|
||||||
|
|
||||||
def loadResults(self):
|
def loadResults(self):
|
||||||
self.app.load()
|
self.app.load()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user