# HG changeset patch # User Augie Fackler # Date 2013-09-20 14:16:55 # Node ID efee1f35fcae6a156b066890cb68ee362b50dd56 # Parent f4b72cad29f86a3a90e9f45046b264d899112777 notify: correct import of email module, sort stdlib modules to top diff --git a/hgext/notify.py b/hgext/notify.py --- a/hgext/notify.py +++ b/hgext/notify.py @@ -133,9 +133,10 @@ web.baseurl ''' +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'