summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-22 14:37:36 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2021-11-22 14:37:36 +0000
commit2dfd6734725f50be8c576ef7b05ec78a4c24028d (patch)
tree5843f274660d1436af111c66aad6c2e8ef95c514
parent46dbfa8711871421d12b4eacc32d9ee5425de218 (diff)
downloadpython-setuptools-git-2dfd6734725f50be8c576ef7b05ec78a4c24028d.tar.gz
Preserve orignal comment position
-rw-r--r--distutils/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils/core.py b/distutils/core.py
index 15ddcf80..f43888ea 100644
--- a/distutils/core.py
+++ b/distutils/core.py
@@ -143,6 +143,7 @@ def setup (**attrs):
if _setup_stop_after == "commandline":
return dist
+ # And finally, run all the commands found on the command line.
if ok:
return run_commands(dist)
@@ -158,7 +159,6 @@ def run_commands (dist):
This function assumes that either ``sys.argv`` or ``dist.script_args``
is already set accordingly.
"""
- # And finally, run all the commands found on the command line.
try:
dist.run_commands()
except KeyboardInterrupt: