summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-08-08 11:18:53 -0300
committerMonty Taylor <mordred@inaugust.com>2013-08-08 11:20:41 -0300
commitfb0aabc97d64958799fd4a19994ac43d2632fb60 (patch)
tree116e1e1117bbc97ef82b33554b597e29d06c6bb2
parent270594f4e12dd3d2ce94e2e32128d72aba490cd6 (diff)
downloadpbr-fb0aabc97d64958799fd4a19994ac43d2632fb60.tar.gz
Fix pep8 error
I have no idea how this wasn't happening before but now is. Change-Id: I3a9c82d58d9a89d31711efbdd30324888f343e3a
-rw-r--r--pbr/packaging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbr/packaging.py b/pbr/packaging.py
index 310ad39..a97880c 100644
--- a/pbr/packaging.py
+++ b/pbr/packaging.py
@@ -488,7 +488,7 @@ def override_get_script_args(
import_target=ep.attrs[0],
invoke_target='.'.join(ep.attrs),
)
- yield (name, header+script_text)
+ yield (name, header + script_text)
class LocalInstallScripts(install_scripts.install_scripts):