From 89c652d762ad40061ec5b05da524b745ee377784 Mon Sep 17 00:00:00 2001 From: Adam Gandelman Date: Wed, 7 Mar 2012 11:06:11 -0800 Subject: setup.py: Fix doc building Commit 5702f80a0 updated local_BuildDoc's parameters without also updating references to the original parameters. This fixes the issue and gets './setup.py build_sphinx' working again. Change-Id: I3483c906c13347a718e1794786830f06af700ebd --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4291c2d60..d204681c8 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ try: for builder in ['html', 'man']: self.builder = builder self.finalize_options() - BuildDoc.run(self) + setup_command.BuildDoc.run(self) nova_cmdclass['build_sphinx'] = local_BuildDoc except Exception: -- cgit