mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 02:26:01 +01:00
Fix build failure missed one isosx instance
This commit is contained in:
parent
6fcd0e7407
commit
7f6dce5218
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ def is_ext_allowed(ext):
|
|||
only = ext.get('only', '')
|
||||
if only:
|
||||
only = set(only.split())
|
||||
q = set(filter(lambda x: globals()["is" + x], ["bsd", "freebsd", "haiku", "linux", "osx", "windows"]))
|
||||
q = set(filter(lambda x: globals()["is" + x], ["bsd", "freebsd", "haiku", "linux", "macos", "windows"]))
|
||||
return len(q.intersection(only)) > 0
|
||||
return True
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue