##// END OF EJS Templates
py3: use absolute_import in test-propertycache.py
Robert Stanca -
r28755:84673a7c default
parent child Browse files
Show More
@@ -62,7 +62,6 b''
62 62 tests/test-manifest.py not using absolute_import
63 63 tests/test-pathencode.py not using absolute_import
64 64 tests/test-pathencode.py requires print_function
65 tests/test-propertycache.py not using absolute_import
66 65 tests/test-propertycache.py requires print_function
67 66 tests/test-revlog-ancestry.py not using absolute_import
68 67 tests/test-revlog-ancestry.py requires print_function
@@ -4,7 +4,9 b' The repoview overlay is quite complex. W'
4 4 property cache of both localrepo and repoview to prevent
5 5 regression."""
6 6
7 import os, subprocess
7 from __future__ import absolute_import
8 import os
9 import subprocess
8 10 import mercurial.localrepo
9 11 import mercurial.repoview
10 12 import mercurial.util
General Comments 0
You need to be logged in to leave comments. Login now