summaryrefslogtreecommitdiff
path: root/test_hgdistver.py
diff options
context:
space:
mode:
authorRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-05 23:32:12 +0200
committerRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-05 23:32:12 +0200
commitc9875ae63b6465f9449148a6d525e9a572c4fa9a (patch)
treefc3ccae05dd3f4cc427029d014c00176c15e6fc7 /test_hgdistver.py
parent92218519d111658396bbab6170155ef85ba23489 (diff)
downloadsetuptools-scm-c9875ae63b6465f9449148a6d525e9a572c4fa9a.tar.gz
add shell=True to test hg wrapper
Diffstat (limited to 'test_hgdistver.py')
-rw-r--r--test_hgdistver.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test_hgdistver.py b/test_hgdistver.py
index 5a1b89d..79268d9 100644
--- a/test_hgdistver.py
+++ b/test_hgdistver.py
@@ -42,8 +42,11 @@ class sbrepo(object):
'python2', '-c',
'from mercurial import dispatch;dispatch.run()'
]
- return call(prefix + [str(arg) for arg in args],
- cwd=str(self.path))
+ return call(
+ prefix + [str(arg) for arg in args],
+ cwd=str(self.path),
+ shell=True,
+ )
def join(self, name):
return self.path.join(name)