| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/env python |
| 2 # Copyright 2008, Google Inc. | 2 # Copyright 2008, Google Inc. |
| 3 # All rights reserved. | 3 # All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| 11 # * Redistributions in binary form must reproduce the above | 11 # * Redistributions in binary form must reproduce the above |
| (...skipping 20 matching lines...) Expand all Loading... |
| 32 import sys | 32 import sys |
| 33 sys.path.append("../../common") | 33 sys.path.append("../../common") |
| 34 import nacl_util | 34 import nacl_util |
| 35 | 35 |
| 36 NEXE = "voronoi.nexe" | 36 NEXE = "voronoi.nexe" |
| 37 DEFAULT_ARGS = ["-m4", "-d"] | 37 DEFAULT_ARGS = ["-m4", "-d"] |
| 38 | 38 |
| 39 if __name__ == '__main__': | 39 if __name__ == '__main__': |
| 40 nacl_util.LaunchSelLdr(nacl_util.GetExe(NEXE), | 40 nacl_util.LaunchSelLdr(nacl_util.GetExe(NEXE), |
| 41 nacl_util.GetArgs(DEFAULT_ARGS)) | 41 nacl_util.GetArgs(DEFAULT_ARGS)) |
| OLD | NEW |