summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-22 23:22:27 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-05-22 23:22:27 (GMT)
commitbd0d91e706974b7810eaddb25a8b169e533fcb19 (patch)
tree19520a4d45148b896116e28249720e59fb353ada /Tools
parentad577b938b367da53ee19d6d5021b19e50b92873 (diff)
downloadcpython-bd0d91e706974b7810eaddb25a8b169e533fcb19.zip
cpython-bd0d91e706974b7810eaddb25a8b169e533fcb19.tar.gz
cpython-bd0d91e706974b7810eaddb25a8b169e533fcb19.tar.bz2
Removes lingering references to RAR now that make_zip.py actually makes a ZIP
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/make_zip.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Tools/msi/make_zip.py b/Tools/msi/make_zip.py
index fcfcd56..f2e1c4e 100644
--- a/Tools/msi/make_zip.py
+++ b/Tools/msi/make_zip.py
@@ -113,17 +113,14 @@ def main():
parser.add_argument('-t', '--temp', metavar='dir', help='A directory to temporarily extract files into', type=Path, default=None)
parser.add_argument('-e', '--embed', help='Create an embedding layout', action='store_true', default=False)
parser.add_argument('-a', '--arch', help='Specify the architecture to use (win32/amd64)', type=str, default="win32")
- parser.add_argument('--rar', help='Full path to WinRAR compressor (rar.exe)', type=Path, default=Path("rar.exe"))
ns = parser.parse_args()
source = ns.source or (Path(__file__).parent.parent.parent)
out = ns.out
arch = ns.arch
- rar = getattr(ns, 'rar')
assert isinstance(source, Path)
assert isinstance(out, Path)
assert isinstance(arch, str)
- assert isinstance(rar, Path)
if ns.temp:
temp = ns.temp