diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2022-03-30 23:54:38 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2022-03-30 23:54:38 +0100 |
commit | aeb210bd30a1da2d995af60984af128e1208e2d5 (patch) | |
tree | 1c49a9c526f074b22b9bc9640606810c58ad0f0e /core/views/expo.py | |
parent | d7246cbb981a47ac5e6229ec3caa51116a09d7eb (diff) | |
download | troggle-aeb210bd30a1da2d995af60984af128e1208e2d5.tar.gz troggle-aeb210bd30a1da2d995af60984af128e1208e2d5.tar.bz2 troggle-aeb210bd30a1da2d995af60984af128e1208e2d5.zip |
typo
Diffstat (limited to 'core/views/expo.py')
-rw-r--r-- | core/views/expo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/expo.py b/core/views/expo.py index 0ce7cdc..7bad7f7 100644 --- a/core/views/expo.py +++ b/core/views/expo.py @@ -131,7 +131,7 @@ def expowebpage(request, expowebpath, path): except: try: with open(os.path.normpath(expowebpath / path), "rb") as o: - html = o.read() + html = o.read() except: return HttpResponse(default_head + '<h3>UTF-8 Parsing Failure:<br>Page could not be parsed using UTF-8:<br>failure detected in expowebpage in views.expo.py</h3> Please edit this <var>:expoweb:</var> page to replace dubious umlauts and £ symbols with correct HTML entities e.g. <em>&pound;;</em>. </body' ) |