1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Reverted accidental change

This commit is contained in:
Jannis Leidel 2009-09-01 03:19:18 +02:00
parent 73c352ddab
commit 24207dd059

View file

@ -1,5 +1,8 @@
import sys
from setuptools import setup
if sys.platform == 'win32':
from setuptools import setup
else:
from distutils.core import setup
import os