mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
refactor.
This commit is contained in:
parent
af493722c8
commit
9b4c85cae3
1 changed files with 2 additions and 8 deletions
|
@ -143,16 +143,10 @@ class DataLoader:
|
|||
raise OSError("DataLoader could not find image "+filename +
|
||||
" in "+self.dir+" "+str(subdirs))
|
||||
|
||||
def findIcon(self, filename=None, subdirs=None):
|
||||
if not filename:
|
||||
# filename = PACKAGE.lower()
|
||||
filename = 'pysol'
|
||||
def findIcon(self, filename='pysol', subdirs=None):
|
||||
root, ext = os.path.splitext(filename)
|
||||
if not ext:
|
||||
if os.name == 'nt':
|
||||
filename = filename + ".ico"
|
||||
else:
|
||||
filename = filename + ".xbm"
|
||||
filename += ('.ico' if os.name == 'nt' else '.xbm')
|
||||
return self.findFile(filename, subdirs)
|
||||
|
||||
def findDir(self, filename, subdirs=None):
|
||||
|
|
Loading…
Add table
Reference in a new issue