summaryrefslogtreecommitdiff
path: root/tox
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2016-02-11 18:05:32 +0100
committerholger krekel <holger@merlinux.eu>2016-02-11 18:05:32 +0100
commit12c316b75bed74d3e6424cd3d6bd2ff3c9e63c44 (patch)
treec9decac5c648a0c9ea654011111c13a7d3fbc357 /tox
parent2cedcdef9e968328d1593c3851acc285f2b59416 (diff)
parent92b6e7baa7e8a0ea9767592f9f040c02c0017f80 (diff)
downloadtox-git-12c316b75bed74d3e6424cd3d6bd2ff3c9e63c44.tar.gz
Merged in nakatoio/tox (pull request #189)
Fix section substitution with {posargs}
Diffstat (limited to 'tox')
-rw-r--r--tox/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/config.py b/tox/config.py
index 079dff34..67454bcf 100644
--- a/tox/config.py
+++ b/tox/config.py
@@ -1094,7 +1094,7 @@ class _ArgvlistReader:
current_command += line
if is_section_substitution(current_command):
- replaced = reader._replace(current_command)
+ replaced = reader._replace(current_command, crossonly=True)
commands.extend(cls.getargvlist(reader, replaced))
else:
commands.append(cls.processcommand(reader, current_command))