changeset 28416:d3c8183f429e

notify: use absolute_import
author timeless <timeless@mozdev.org>
date Wed, 02 Mar 2016 21:48:08 +0000
parents 21524ae331b7
children 588874c33b4d
files hgext/notify.py tests/test-check-py3-compat.t
diffstat 2 files changed, 13 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/notify.py	Wed Mar 02 21:42:42 2016 +0000
+++ b/hgext/notify.py	Wed Mar 02 21:48:08 2016 +0000
@@ -132,11 +132,21 @@
   references. See also ``notify.strip``.
 
 '''
+from __future__ import absolute_import
 
-import email, socket, time
+import email
+import fnmatch
+import socket
+import time
+
+from mercurial import (
+    cmdutil,
+    error,
+    mail,
+    patch,
+    util,
+)
 from mercurial.i18n import _
-from mercurial import patch, cmdutil, util, mail, error
-import fnmatch
 
 # Note for extension authors: ONLY specify testedwith = 'internal' for
 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
--- a/tests/test-check-py3-compat.t	Wed Mar 02 21:42:42 2016 +0000
+++ b/tests/test-check-py3-compat.t	Wed Mar 02 21:48:08 2016 +0000
@@ -44,7 +44,6 @@
   hgext/largefiles/uisetup.py not using absolute_import
   hgext/largefiles/wirestore.py not using absolute_import
   hgext/mq.py not using absolute_import
-  hgext/notify.py not using absolute_import
   hgext/rebase.py not using absolute_import
   hgext/share.py not using absolute_import
   hgext/transplant.py not using absolute_import