From 531e93999a5b6f974408984ed12648eea3dc092a Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Wed, 4 Dec 2013 17:45:31 +0100 Subject: [PATCH] Use more common syntax, perhaps fixing a bug refs #1299 --- tools/local_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/local_install.py b/tools/local_install.py index d20124a8..a7a336ef 100644 --- a/tools/local_install.py +++ b/tools/local_install.py @@ -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'])