aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setuptools/tests/__init__.py2
-rw-r--r--setuptools/tests/environment.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/__init__.py b/setuptools/tests/__init__.py
index 91519682..ad7d7ee5 100644
--- a/setuptools/tests/__init__.py
+++ b/setuptools/tests/__init__.py
@@ -220,7 +220,7 @@ class TestFeatures:
self.dist = makeSetup(
features={
'foo': Feature("foo", standard=True, require_features=['baz', self.req]),
- 'bar': Feature("bar", standard=True, packages=['pkg.bar'],
+ 'bar': Feature("bar", standard=True, packages=['pkg.bar'],
py_modules=['bar_et'], remove=['bar.ext'],
),
'baz': Feature(
diff --git a/setuptools/tests/environment.py b/setuptools/tests/environment.py
index e5237721..b0e3bd36 100644
--- a/setuptools/tests/environment.py
+++ b/setuptools/tests/environment.py
@@ -51,7 +51,7 @@ def run_setup_py(cmd, pypath=None, path=None,
return 1, ''
# decode the console string if needed
- if hasattr(data, "decode"):
+ if hasattr(data, "decode"):
# use the default encoding
data = data.decode()
data = unicodedata.normalize('NFC', data)