Merge "Update normalize_path.py to Python 3."

This commit is contained in:
Treehugger Robot 2022-10-20 20:27:06 +00:00 committed by Gerrit Code Review
commit de764d7d82

View file

@ -22,8 +22,8 @@ import sys
if len(sys.argv) > 1:
for p in sys.argv[1:]:
print os.path.normpath(p)
print(os.path.normpath(p))
sys.exit(0)
for line in sys.stdin:
print os.path.normpath(line.strip())
print(os.path.normpath(line.strip()))