diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-01-15 12:39:49 -0500 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-01-15 12:41:11 -0500 |
commit | a272dc9691c6663e4a2b59d0baa9d209b95c1c41 (patch) | |
tree | b99aaf81bd133fb08b0658263c20940cf5350955 /python/book_latex.py | |
parent | ab8dfc6e8f3de3cefc8fab09a4993acaec460720 (diff) |
lilypond-book: Typo in setting environment variable.
Diffstat (limited to 'python/book_latex.py')
-rw-r--r-- | python/book_latex.py | 2 |
1 files changed, 1 insertions, 1 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 |