Fix import line for setup.py

Build fails in case python-setuptools is not installed.

Change-Id: I1611f3560db82a4a48c51a9f614a813a9a540698
Signed-off-by: Peter Ginchev <pginchev@cisco.com>
This commit is contained in:
Peter Ginchev
2016-09-26 10:46:17 +03:00
parent ab3e42b08d
commit 62a28716d8

View File

@ -13,9 +13,9 @@
# limitations under the License.
try:
from setuptools import setup, command, Extension
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup
from distutils.core import setup, Extension
setup (name = 'vpp_papi',
version = '1.2',