Removed unused code that shouldn't have been committed.

This commit is contained in:
Mark Feit 2018-12-28 12:22:56 -05:00
parent 5dd43729ab
commit 1634e51382

View file

@ -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):