Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed May 12, 2018
1 parent 4487ddc commit af29ae1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tox/interpreters.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def tox_get_python_executable(envconfig):
m = re.match(r"python(\d)\.(\d)", name)
if m:
# The standard names are in predictable places.
actual = r"c:\python{}{}\python.exe".format(m.groups())
actual = r"c:\python{}{}\python.exe".format(*m.groups())
if not actual:
actual = win32map.get(name, None)
if actual:
Expand Down
2 changes: 1 addition & 1 deletion tox/venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def writeconfig(self, path):
lines = [
"{} {}".format(self.md5, self.python),
"{} {:d} {:d} {:d}".format(
self.version, self.sitepackages, self.usedevelop, self.alwayscopyf
self.version, self.sitepackages, self.usedevelop, self.alwayscopy
),
]
for dep in self.deps:
Expand Down

0 comments on commit af29ae1

Please sign in to comment.