diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-02 21:20:27 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-02 21:20:27 -0400 |
| commit | 871e04e592f7408787ceae5787a6e196b2fc1783 (patch) | |
| tree | 592fbd1a9903c0052e14f123348a469bacac6827 /setuptools/command/upload_docs.py | |
| parent | d8f4d5de6263020e250b6def2fea481d3ed9c7d0 (diff) | |
| download | python-setuptools-git-871e04e592f7408787ceae5787a6e196b2fc1783.tar.gz | |
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/command/upload_docs.py')
| -rw-r--r-- | setuptools/command/upload_docs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py index 7ee0221b..3263f07f 100644 --- a/setuptools/command/upload_docs.py +++ b/setuptools/command/upload_docs.py @@ -59,7 +59,9 @@ class upload_docs(upload): self.target_dir = None def finalize_options(self): - log.warn("Upload_docs command is deprecated. Use Read the Docs (https://readthedocs.org) instead.") + log.warn( + "Upload_docs command is deprecated. Use Read the Docs " + "(https://readthedocs.org) instead.") upload.finalize_options(self) if self.upload_dir is None: if self.has_sphinx(): |
