Skip to content

Commit df74b3c

Browse files
committed
Fix interpretation of supported file types
1 parent 7283ee2 commit df74b3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Batch.roboFontExt/lib/batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def extractPath(path):
287287
for instanceDescriptor in designspaceDocument.instances:
288288
if instanceDescriptor.path is not None:
289289
ufoPaths.append(instanceDescriptor.path)
290-
elif ext in self.supportedFileTypes:
290+
elif ext.strip(".") in self.supportedFileTypes:
291291
ufoPaths.append(path)
292292

293293
for item in items:

0 commit comments

Comments
 (0)