From 8568cd08714637a5d6d772f32154b9d93b3eed0b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 23 Sep 2016 16:00:42 -0700 Subject: [PATCH] Change docs_bdist --> bdist_docs --- build.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 2b40defb..016f0cf5 100755 --- a/build.py +++ b/build.py @@ -127,7 +127,7 @@ Usage: ./build.py [command(s)] [options] sdist Build a tarball containing all source files bdist Create a binary tarball release of wxPython Phoenix - docs_bdist Build a tarball containing the documentation + bdist_docs Build a tarball containing the documentation bdist_egg Build a Python egg. Requires magic. bdist_wheel Build a Python wheel. Requires magic. @@ -948,6 +948,10 @@ def cmd_wxtools(options, args): def cmd_docs_bdist(options, args): + # TODO: get rid of this function after a while + cmd_bdist_docs(options, args) + +def cmd_bdist_docs(options, args): cmdTimer = CommandTimer('docs_bdist') pwd = pushDir(phoenixDir())