Ran update-copyright.py.
[pygrader.git] / pygrader / extract_mime.py
index 40b2a968d7d13b8dbee878ddbcc2ea08110b1674..e1f897de5c4693767a17811edd4f34eb4db52dfb 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2012 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
 # This file is part of pygrader.
 #
@@ -27,11 +27,9 @@ import os.path as _os_path
 import time as _time
 
 from . import LOG as _LOG
-from .color import color_string as _color_string
-from .color import standard_colors as _standard_colors
 
 
-def message_time(message, use_color=None):
+def message_time(message):
     """Get the Unix time when ``message`` was received.
 
     >>> from email.utils import formatdate
@@ -47,12 +45,10 @@ def message_time(message, use_color=None):
     >>> formatdate(time)
     'Sun, 09 Oct 2011 15:50:46 -0000'
     """
-    highlight,lowlight,good,bad = _standard_colors(use_color=use_color)
     received = message['Received']  # RFC 822
     if received is None:
         mid = message['Message-ID']
-        _LOG.debug(_color_string(
-                string='no Received in {}'.format(mid), color=lowlight))
+        _LOG.debug('no Received in {}'.format(mid))
         return None
     date = received.split(';', 1)[1]
     return _time.mktime(_email_utils.parsedate(date))