aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJacek Antonelli2010-05-06 00:36:57 -0500
committerJacek Antonelli2010-05-06 00:36:57 -0500
commitd06254c4eebde6d81a778ff46486b3e8a6603e7b (patch)
tree922ab97d110916ef3dca4d508331cf8de8cf1fda
parentFixed crash on quit in LLAgent dtor (diff)
downloadmeta-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
-rwxr-xr-xlinden/scripts/make_changelog.py2
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,