Fix error. EXTRAS_REQUIRE is dictionary not a list.

This commit is contained in:
Ushkovsky Stanislav 2018-11-04 17:17:36 +03:00
parent 0e63392ee3
commit b84ff9b3b0
No known key found for this signature in database
GPG Key ID: 39448CF07129729D
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ try:
from setup import EXTRAS_REQUIRE
except ImportError:
HAVE_SETUPTOOLS = False
EXTRAS_REQUIRE = []
EXTRAS_REQUIRE = {}
from importlib import import_module