Mercurial > hg > mxe-octave-anirudha
changeset 3216:488d0100db6e
[Darwin] darwin_files/standalone.py: Move "from __future__import" line to the beginning of the file
author | Anirudha Bose <ani07nov@gmail.com> |
---|---|
date | Sat, 21 Sep 2013 16:49:21 +0530 |
parents | d1fb703f2cd0 |
children | a3a6870253d7 |
files | darwin_files/standalone.py |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/darwin_files/standalone.py +++ b/darwin_files/standalone.py @@ -24,16 +24,15 @@ ## likely to happen while using MXE. This script can fix such errors too, but make sure ## you do not use this script on the same App Bundle more than once. +from __future__ import print_function +from macholib.MachO import MachO + __author__ = "Anirudha Bose" __email__ = "ani07nov@gmail.com" -from __future__ import print_function - import os import sys -from macholib.MachO import MachO - def dylibs_fix(path): print(path) m = MachO(path)