From 3f6bfde0a30d322d80e54fa513bc3ff09923ab86 Mon Sep 17 00:00:00 2001 From: Ashley Teoh Date: Sun, 1 Apr 2018 10:34:00 -0400 Subject: [PATCH] remove etag code --- notebook/nbconvert/handlers.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/notebook/nbconvert/handlers.py b/notebook/nbconvert/handlers.py index 23159346b..6543dc11a 100644 --- a/notebook/nbconvert/handlers.py +++ b/notebook/nbconvert/handlers.py @@ -141,9 +141,6 @@ class NbconvertFileHandler(IPythonHandler): self.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0') self.finish(output) - def compute_etag(self): - return None - class NbconvertPostHandler(IPythonHandler): SUPPORTED_METHODS = ('POST',)