Use more common syntax, perhaps fixing a bug

refs #1299
This commit is contained in:
Laurent Bachelier 2013-12-04 17:45:31 +01:00 committed by Romain Bignon
commit 531e93999a

View file

@ -33,7 +33,7 @@ print "Installing weboob applications into %s." % dest
subprocess.check_call(
[sys.executable, 'setup.py',
'install', '--user', '--install-scripts', dest] + sys.argv[2:] + deps,
'install', '--user', '--install-scripts=%s' % dest] + sys.argv[2:] + deps,
cwd=os.path.join(os.path.dirname(__file__), os.pardir))
subprocess.check_call([sys.executable, os.path.join(dest, 'weboob-config'), 'update'])