notify: correct import of email module, sort stdlib modules to top
authorAugie Fackler <raf@durin42.com>
Fri, 20 Sep 2013 10:16:55 -0400
changeset 19792 efee1f35fcae
parent 19791 f4b72cad29f8
child 19793 6fb1b7728719
notify: correct import of email module, sort stdlib modules to top
hgext/notify.py
--- 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'