##// END OF EJS Templates
tests: fix module-import warnings in test-update-atomic.t...
Pulkit Goyal -
r41394:0a0927f7 default
parent child Browse files
Show More
@@ -4,9 +4,10 b' Checking that experimental.atomic-file w'
4
4
5 $ cat > $TESTTMP/show_mode.py <<EOF
5 $ cat > $TESTTMP/show_mode.py <<EOF
6 > from __future__ import print_function
6 > from __future__ import print_function
7 > import os
8 > import stat
7 > import sys
9 > import sys
8 > import os
10 > ST_MODE = stat.ST_MODE
9 > from stat import ST_MODE
10 >
11 >
11 > for file_path in sys.argv[1:]:
12 > for file_path in sys.argv[1:]:
12 > file_stat = os.stat(file_path)
13 > file_stat = os.stat(file_path)
General Comments 0
You need to be logged in to leave comments. Login now