Mercurial > p > roundup > code
diff roundup/dist/command/build_scripts.py @ 5022:9250620c7219 pip
build_scripts: Fix long term bug with setting self.target_platform
self.target_platform is not used anywhere outside this custom class
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Mon, 11 Jan 2016 01:28:45 +0300 |
| parents | e233d7a66343 |
| children | 5e2888db6c48 |
line wrap: on
line diff
--- a/roundup/dist/command/build_scripts.py Mon Jan 11 01:20:29 2016 +0300 +++ b/roundup/dist/command/build_scripts.py Mon Jan 11 01:28:45 2016 +0300 @@ -60,7 +60,7 @@ else: # default to current platform target = sys.platform - self.target_platfom = target + self.target_platform = target # for native builds, use current python executable path; # for cross-platform builds, use default executable name
