From 1634e51382c279569da4b1a92b2aa13af8305b21 Mon Sep 17 00:00:00 2001 From: Mark Feit Date: Fri, 28 Dec 2018 12:22:56 -0500 Subject: [PATCH] Removed unused code that shouldn't have been committed. --- imapbackup.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/imapbackup.py b/imapbackup.py index 421134e..2c2c6a3 100644 --- a/imapbackup.py +++ b/imapbackup.py @@ -124,18 +124,6 @@ def string_from_file(value): return content.read().strip() -class Narrator: - """Globally-switchable narrator to replace print statements""" - def __init__(self, is_on): - self.is_on = is_on - - def __call__(self, *args): - if self.is_on: - for arg in args: - print arg, - print - - def download_messages(server, filename, messages, config):