From: Jason R. Coombs Date: Sat, 10 May 2014 17:24:58 +0000 (-0400) Subject: Reindent long line X-Git-Tag: v3.5.0a1~1700 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09122f84fc1e6082bacb6b11930f2ff4f81bcda4;p=thirdparty%2FPython%2Fcpython.git Reindent long line --- diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index c279b591c499..b90643520326 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)