copy: Add workaround against loading copy from current dir when publishing.

asyncio-segfault
Paul Sokolovsky 2014-04-06 23:10:28 +03:00
rodzic 5cd6cf494c
commit 0b37602a02
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
import sys
# Remove current dir from sys.path, otherwise distutils will peek up our
# copy module instead of system.
sys.path.pop(0)
from distutils.core import setup
setup(name='micropython-copy',