Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f64899a3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Update normalize_path.py to Python 3." am: de764d7d am: 4e2dc732

parents 04285033 4e2dc732
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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()))