# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1458081808 -19800 # Node ID 2b585677220e9b1f09259a4370bedfe493eb8941 # Parent 330584235c22273abd8266fdd9269de9a93a4059 contrib: python-hook-examples use absolute_import diff -r 330584235c22 -r 2b585677220e contrib/python-hook-examples.py --- a/contrib/python-hook-examples.py Wed Mar 16 04:12:16 2016 +0530 +++ b/contrib/python-hook-examples.py Wed Mar 16 04:13:28 2016 +0530 @@ -1,7 +1,11 @@ ''' Examples of useful python hooks for Mercurial. ''' -from mercurial import patch, util +from __future__ import absolute_import +from mercurial import ( + patch, + util, +) def diffstat(ui, repo, **kwargs): '''Example usage: diff -r 330584235c22 -r 2b585677220e tests/test-check-py3-compat.t --- a/tests/test-check-py3-compat.t Wed Mar 16 04:12:16 2016 +0530 +++ b/tests/test-check-py3-compat.t Wed Mar 16 04:13:28 2016 +0530 @@ -5,7 +5,6 @@ $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py contrib/import-checker.py not using absolute_import contrib/import-checker.py requires print_function - contrib/python-hook-examples.py not using absolute_import contrib/revsetbenchmarks.py not using absolute_import contrib/revsetbenchmarks.py requires print_function contrib/synthrepo.py not using absolute_import