# HG changeset patch # User Augie Fackler # Date 1503436514 14400 # Node ID b4707311d98250308240bed244d6fcc7206c1fae # Parent 266192d4666b71f9689ca4fe34bfb67bc859ece1 tests: update test-largefiles-cache to pass our import checker diff -r 266192d4666b -r b4707311d982 tests/test-largefiles-cache.t --- a/tests/test-largefiles-cache.t Tue Aug 22 17:15:09 2017 -0400 +++ b/tests/test-largefiles-cache.t Tue Aug 22 17:15:14 2017 -0400 @@ -94,9 +94,11 @@ $ cat > ls-l.py < #!$PYTHON - > import sys, os + > from __future__ import absolute_import, print_function + > import os + > import sys > path = sys.argv[1] - > print('%03o' % (os.lstat(path).st_mode & 0777)) + > print('%03o' % (os.lstat(path).st_mode & 0o777)) > EOF $ chmod +x ls-l.py