gregier/epub-search

NameError: global name 'sys' is not defined

dohliam opened this issue · 0 comments

The following error shows up when running python setup.py install:

NameError: global name 'sys' is not defined

This indicates that sys was not imported. Install continued to fail until I added the following line to setup/failablebuildext.py:

import sys

After this line was added, installation was successful.