From: Julien Rioux Date: Sun, 15 Jan 2012 17:39:49 +0000 (-0500) Subject: lilypond-book: Typo in setting environment variable. X-Git-Tag: release/2.15.26-1~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a272dc9691c6663e4a2b59d0baa9d209b95c1c41;p=lilypond.git lilypond-book: Typo in setting environment variable. --- diff --git a/python/book_latex.py b/python/book_latex.py index 398d88c42c..591de34eea 100644 --- a/python/book_latex.py +++ b/python/book_latex.py @@ -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 diff --git a/python/book_texinfo.py b/python/book_texinfo.py index 6137f28273..ca9ee31754 100644 --- a/python/book_texinfo.py +++ b/python/book_texinfo.py @@ -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