Support combined file extensions (*.pau.gz instead of just *.gz)

This commit is contained in:
Andreas Klauer 2013-02-24 02:09:03 +01:00
parent 000efed5cd
commit 6562188ae8

View File

@ -255,14 +255,13 @@ def onImport(mw):
importFile(mw, file)
def importFile(mw, file):
ext = os.path.splitext(file)[1]
importer = None
done = False
for i in importing.Importers:
if done:
break
for mext in re.findall("[( ]?\*\.(.+?)[) ]", i[0]):
if ext == "." + mext:
if file.endswith("." + mext):
importer = i[1]
done = True
break