We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e461154 + f20172a commit 2f7fcf5Copy full SHA for 2f7fcf5
music21/converter/__init__.py
@@ -210,7 +210,10 @@ def _extractContents(self,
210
if 'META-INF' in subFp:
211
continue
212
# include .mxl to be kind to users who zipped up mislabeled files
213
- if pathlib.Path(subFp).suffix not in ['.musicxml', '.xml', '.mxl']:
+ if pathlib.Path(subFp).suffix not in ['.musicxml',
214
+ '.xml',
215
+ '.mxl'] and subFp != '.xml':
216
+ # Noteflight bug for untitled files puts filename as just '.xml'
217
218
219
post = f.read(subFp)
0 commit comments