Skip to content

Commit

Permalink
setup.py: make build_docs' base class more explicit
Browse files Browse the repository at this point in the history
distutils.command.build.Command is distutils.core.Command.
  • Loading branch information
marcus-h committed Sep 16, 2016
1 parent 7849e23 commit fdb773b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

from distutils.core import setup
import distutils.core
import distutils.command.build
import distutils.command.install_data
import os.path
Expand Down Expand Up @@ -42,7 +43,7 @@ def run(self):


# Support for documentation (sphinx)
class build_docs(distutils.command.build.Command):
class build_docs(distutils.core.Command):
description = 'builds documentation using sphinx'
user_options = []

Expand Down

0 comments on commit fdb773b

Please sign in to comment.