1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

refactor.

This commit is contained in:
Shlomi Fish 2018-03-13 13:40:25 +02:00
parent af493722c8
commit 9b4c85cae3

View file

@ -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):