aboutsummaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-14 12:11:49 +0700
committerstepshal <nessento@openmailbox.org>2016-07-14 12:11:49 +0700
commitdc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c (patch)
tree2f1a5c1365313dbe185c598194d2f9cafda7e6ee /pavement.py
parent10866a525737842b090d83ccaf6d7aceb092f069 (diff)
downloadexternal_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.gz
external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.bz2
external_python_setuptools-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.zip
Fix missing whitespace around operator.
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py
index f620c790..3d840086 100644
--- a/pavement.py
+++ b/pavement.py
@@ -17,7 +17,7 @@ def update_vendored():
remove_all(vendor.glob('pyparsing*'))
install_args = [
'install',
- '-r', str(vendor/'vendored.txt'),
+ '-r', str(vendor / 'vendored.txt'),
'-t', str(vendor),
]
pip.main(install_args)