We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b2314b commit 54db4a6Copy full SHA for 54db4a6
setup.py
@@ -156,10 +156,10 @@ def parse_requirements(filename):
156
version = pkg_resources.get_distribution(dist).version
157
except pkg_resources.DistributionNotFound:
158
version = "n/a"
159
- print(" %s: %s" % (dist, version))
+ print(" {}: {}".format(dist, version))
160
for key in ["PEP517_BUILD_BACKEND"]:
161
if key in os.environ:
162
- print(" %s=%s" % (key, os.environ[key]))
+ print(" {}={}".format(key, os.environ[key]))
163
print(
164
"""\
165
=============================DEBUG ASSISTANCE=============================
0 commit comments