diff options
| author | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
|---|---|---|
| committer | stepshal <nessento@openmailbox.org> | 2016-07-14 12:11:49 +0700 |
| commit | dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c (patch) | |
| tree | 2f1a5c1365313dbe185c598194d2f9cafda7e6ee /setuptools/tests/test_bdist_egg.py | |
| parent | 10866a525737842b090d83ccaf6d7aceb092f069 (diff) | |
| download | python-setuptools-git-dc2d1dc249bec8e3a864e2aa6002a8e27adc4b7c.tar.gz | |
Fix missing whitespace around operator.
Diffstat (limited to 'setuptools/tests/test_bdist_egg.py')
| -rw-r--r-- | setuptools/tests/test_bdist_egg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_bdist_egg.py b/setuptools/tests/test_bdist_egg.py index a7ceac86..42c44edf 100644 --- a/setuptools/tests/test_bdist_egg.py +++ b/setuptools/tests/test_bdist_egg.py @@ -18,9 +18,9 @@ setup(name='foo', py_modules=['hi']) @pytest.yield_fixture def setup_context(tmpdir): - with (tmpdir/'setup.py').open('w') as f: + with (tmpdir / 'setup.py').open('w') as f: f.write(SETUP_PY) - with (tmpdir/'hi.py').open('w') as f: + with (tmpdir / 'hi.py').open('w') as f: f.write('1\n') with tmpdir.as_cwd(): yield tmpdir |
