diff options
author | Jacek Antonelli | 2010-05-06 00:36:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2010-05-06 00:36:57 -0500 |
commit | d06254c4eebde6d81a778ff46486b3e8a6603e7b (patch) | |
tree | 922ab97d110916ef3dca4d508331cf8de8cf1fda /linden/scripts | |
parent | Fixed crash on quit in LLAgent dtor (diff) | |
download | meta-impy-d06254c4eebde6d81a778ff46486b3e8a6603e7b.zip meta-impy-d06254c4eebde6d81a778ff46486b3e8a6603e7b.tar.gz meta-impy-d06254c4eebde6d81a778ff46486b3e8a6603e7b.tar.bz2 meta-impy-d06254c4eebde6d81a778ff46486b3e8a6603e7b.tar.xz |
Fixed a subprocess usage bug in make_changelog.py. @nochangelog
Diffstat (limited to 'linden/scripts')
-rwxr-xr-x | linden/scripts/make_changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/scripts/make_changelog.py b/linden/scripts/make_changelog.py index 713adc1..c71f48f 100755 --- a/linden/scripts/make_changelog.py +++ b/linden/scripts/make_changelog.py | |||
@@ -390,7 +390,7 @@ def main(): | |||
390 | "--date=short", "--date-order"] + commits | 390 | "--date=short", "--date-order"] + commits |
391 | 391 | ||
392 | try: | 392 | try: |
393 | proc = subprocess.Popen(cmd, | 393 | proc = subprocess.Popen( [" ".join(cmd)], |
394 | cwd = ROOT_DIR, | 394 | cwd = ROOT_DIR, |
395 | stdout = subprocess.PIPE, | 395 | stdout = subprocess.PIPE, |
396 | stderr = subprocess.STDOUT, | 396 | stderr = subprocess.STDOUT, |