Match bytestring typo fix.

This commit is contained in:
voussoir 2022-11-13 19:12:50 -08:00
parent e3ab2e52e9
commit d13443d70e

View file

@ -46,7 +46,7 @@ site.localhost_only = False
session_manager = sessions.SessionManager(maxlen=10000) session_manager = sessions.SessionManager(maxlen=10000)
file_etag_manager = client_caching.FileEtagManager( file_etag_manager = client_caching.FileEtagManager(
maxlen=10000, maxlen=10000,
max_filesize=5 * bytestring.MIBIBYTE, max_filesize=5 * bytestring.MEBIBYTE,
max_age=BROWSER_CACHE_DURATION, max_age=BROWSER_CACHE_DURATION,
) )