changeset 19792:efee1f35fcae

notify: correct import of email module, sort stdlib modules to top
author Augie Fackler <raf@durin42.com>
date Fri, 20 Sep 2013 10:16:55 -0400
parents f4b72cad29f8
children 6fb1b7728719
files hgext/notify.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/notify.py	Fri Sep 20 10:16:35 2013 -0400
+++ b/hgext/notify.py	Fri Sep 20 10:16:55 2013 -0400
@@ -133,9 +133,10 @@
 
 '''
 
+import email, socket, time
 from mercurial.i18n import _
 from mercurial import patch, cmdutil, templater, util, mail
-import email.Parser, email.Errors, fnmatch, socket, time
+import fnmatch
 
 testedwith = 'internal'