From a272dc9691c6663e4a2b59d0baa9d209b95c1c41 Mon Sep 17 00:00:00 2001 From: Julien Rioux Date: Sun, 15 Jan 2012 12:39:49 -0500 Subject: [PATCH] lilypond-book: Typo in setting environment variable. --- python/book_latex.py | 2 +- python/book_texinfo.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2