From 3eb78609c0f8f22857f08b43e29bea0a197ad201 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Sat, 14 Jul 2001 05:48:44 +0000 Subject: Installing Idle to site-packages via Distutils does not copy the Idle help.txt file. Ref SF Python Patch 422471 --- Lib/idlelib/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/setup.py b/Lib/idlelib/setup.py index 73f3a81..ba27bed 100644 --- a/Lib/idlelib/setup.py +++ b/Lib/idlelib/setup.py @@ -8,7 +8,7 @@ import idlever idlelib = "idlelib" # the normal build_py would not incorporate the .txt files -txt_files = ['config-unix.txt','config-win.txt','config.txt'] +txt_files = ['config-unix.txt','config-win.txt','config.txt', 'help.txt'] Icons = glob.glob1("Icons","*.gif") class idle_build_py(build_py): def get_plain_outfile(self, build_dir, package, file): -- cgit v0.12