mirror of
https://github.com/facebook/sapling.git
synced 2025-01-08 22:56:44 +03:00
py3: make tests/f use absolute_import
This commit is contained in:
parent
c38821acbc
commit
c8f1089fcf
9
tests/f
9
tests/f
@ -23,7 +23,14 @@ This can be used instead of tools like:
|
||||
md5sum.py
|
||||
"""
|
||||
|
||||
import sys, os, errno, re, glob, optparse
|
||||
from __future__ import absolute_import
|
||||
|
||||
import errno
|
||||
import glob
|
||||
import optparse
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
|
||||
def visit(opts, filenames, outfile):
|
||||
"""Process filenames in the way specified in opts, writing output to
|
||||
|
Loading…
Reference in New Issue
Block a user