Skip to content

Commit

Permalink
remove whole doc directory instead of just subdir. this way we don't …
Browse files Browse the repository at this point in the history
…upload all doc versions every time...
  • Loading branch information
Mike Dirolf committed Apr 15, 2009
1 parent 934f6a1 commit 2b66d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def finalize_options(self):
def run(self):
path = "doc/%s" % version

shutil.rmtree(path, ignore_errors=True)
shutil.rmtree("doc", ignore_errors=True)
os.makedirs(path)

subprocess.call(["epydoc", "--config", "epydoc-config", "-o", path])
Expand Down

0 comments on commit 2b66d61

Please sign in to comment.