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

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

Merge "Convert findleaves.py to python 3" am: aa3b3229

parents 58f12a51 aa3b3229
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
#!/usr/bin/env python
#!/usr/bin/env python3
#
# Copyright (C) 2009 The Android Open Source Project
#
@@ -121,7 +121,7 @@ def main(argv):
  results = list(set(perform_find(mindepth, prune, dirlist, filenames)))
  results.sort()
  for r in results:
    print r
    print(r)

if __name__ == "__main__":
  main(sys.argv)