]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-book: Typo in setting environment variable.
authorJulien Rioux <jrioux@physics.utoronto.ca>
Sun, 15 Jan 2012 17:39:49 +0000 (12:39 -0500)
committerJulien Rioux <jrioux@physics.utoronto.ca>
Sun, 15 Jan 2012 17:41:11 +0000 (12:41 -0500)
python/book_latex.py
python/book_texinfo.py

index 398d88c42c229b728edf9e81866934bf075758c4..591de34eea79f470d1594b8fd8cd7c627ffe2b1e 100644 (file)
@@ -189,7 +189,7 @@ def get_latex_textwidth (source, global_options):
     cmd = '%s %s' % (global_options.latex_program, tmpfile);
     ly.debug_output ("Executing: %s\n" % cmd);
     run_env = os.environ.copy()
-    run_env['LC_ALL:'] = 'C'
+    run_env['LC_ALL'] = 'C'
 
     ### unknown why this is necessary
     universal_newlines = True
index 6137f282731cd9d6b23b62ea4cc456983aacda56..ca9ee31754f84dfe6adfd57d510dc2c292577957 100644 (file)
@@ -209,7 +209,7 @@ def get_texinfo_width_indent (source, global_options):
     cmd = '%s -c -o %s %s' % (global_options.texinfo_program, outfile, tmpfile);
     ly.debug_output ("Executing: %s\n" % cmd);
     run_env = os.environ.copy()
-    run_env['LC_ALL:'] = 'C'
+    run_env['LC_ALL'] = 'C'
 
     ### unknown why this is necessary
     universal_newlines = True