##// END OF EJS Templates
py3: make tests/f use absolute_import
Pulkit Goyal -
r29160:0362605b default
parent child Browse files
Show More
@@ -23,7 +23,14 b' This can be used instead of tools like:'
23 23 md5sum.py
24 24 """
25 25
26 import sys, os, errno, re, glob, optparse
26 from __future__ import absolute_import
27
28 import errno
29 import glob
30 import optparse
31 import os
32 import re
33 import sys
27 34
28 35 def visit(opts, filenames, outfile):
29 36 """Process filenames in the way specified in opts, writing output to
General Comments 0
You need to be logged in to leave comments. Login now