diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-10 17:24:58 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-10 17:24:58 (GMT) |
commit | 09122f84fc1e6082bacb6b11930f2ff4f81bcda4 (patch) | |
tree | ccf3ff998c4e68baeb6f1e33595dd3e1efb54d1c /Lib/distutils/command | |
parent | 0375653371cba48f921c883cfc1142f14babeff0 (diff) | |
download | cpython-09122f84fc1e6082bacb6b11930f2ff4f81bcda4.zip cpython-09122f84fc1e6082bacb6b11930f2ff4f81bcda4.tar.gz cpython-09122f84fc1e6082bacb6b11930f2ff4f81bcda4.tar.bz2 |
Reindent long line
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/upload.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index c279b59..b906435 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -57,7 +57,8 @@ class upload(PyPIRCCommand): def run(self): if not self.distribution.dist_files: - raise DistutilsOptionError("No dist file created in earlier command") + msg = "No dist file created in earlier command" + raise DistutilsOptionError(msg) for command, pyversion, filename in self.distribution.dist_files: self.upload_file(command, pyversion, filename) |