Skip to content

Commit

Permalink
Make setup bail if systemtools not available.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuaxo committed May 1, 2016
1 parent 342e683 commit e432b97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
try:
from setuptools import setup
from setuptools import Command as CleanBaseCommand
raise ImportError("!")
except ImportError:
from distutils.core import setup
from distutils.command import clean as CleanBaseCommand
sys.exit("Install systemtools before shoebot")


class CleanCommand(CleanBaseCommand):
Expand Down

0 comments on commit e432b97

Please sign in to comment.