diff --git a/notebook/services/contents/filemanager.py b/notebook/services/contents/filemanager.py index 92a135b4f..a05253ac3 100644 --- a/notebook/services/contents/filemanager.py +++ b/notebook/services/contents/filemanager.py @@ -281,7 +281,7 @@ class FileContentsManager(FileManagerMixin, ContentsManager): if e.errno == errno.ENOENT: self.log.warning("%s doesn't exist", os_path) else: - self.log.warning("Error stat-ing %s: %s", (os_path, e)) + self.log.warning("Error stat-ing %s: %s", os_path, e) continue if not stat.S_ISREG(st.st_mode) and not stat.S_ISDIR(st.st_mode):