diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-18 15:18:25 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-06-18 15:18:25 -0500 |
commit | 9dba44de84561c72831dad179db30e4dfb3923fd (patch) | |
tree | 305d19bbe9d0bba62268f7b49407b0aadf67f870 | |
parent | 4fd487f72e26dfc8390756e4cfea367fe470558b (diff) | |
download | mediagoblin-9dba44de84561c72831dad179db30e4dfb3923fd.tar.lz mediagoblin-9dba44de84561c72831dad179db30e4dfb3923fd.tar.xz mediagoblin-9dba44de84561c72831dad179db30e4dfb3923fd.zip |
Make REPORT_HEADER a unicode string also. Unicode everywhere, ideally!
-rw-r--r-- | mediagoblin/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/config.py b/mediagoblin/config.py index 2e457e44..4f6d9f2e 100644 --- a/mediagoblin/config.py +++ b/mediagoblin/config.py @@ -82,7 +82,7 @@ def read_mediagoblin_config(config_path, config_spec=CONFIG_SPEC_PATH): return config, validation_result -REPORT_HEADER = """\ +REPORT_HEADER = u"""\ There were validation problems loading this config file: -------------------------------------------------------- """ |