From 5d9fcf796a99252914c436f8f4059ef0deadfd1f Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 14 Aug 2010 03:50:55 -0400 Subject: [PATCH 1/1] Renamed bin/hooke -> bin/hk.py. This fixes amantedpaz' crash from http://code.google.com/p/hooke/issues/detail?id=40#c17 It turned out to not be related to issue8534, as I'd originally thought. The crash looked like: C:\hooke>c:\python26\python bin/hooke ... Traceback (most recent call last): File "", line 1, in File "c:\python26\lib\multiprocessing\forking.py", line 341, in main prepare(preparation_data) File "c:\python26\lib\multiprocessing\forking.py", line 450, in prepare file, path_name, etc = imp.find_module(main_name, dirs) ImportError: No module named hooke ... --- bin/{hooke => hk.py} | 0 doc/install.txt | 2 +- doc/tutorial.txt | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename bin/{hooke => hk.py} (100%) diff --git a/bin/hooke b/bin/hk.py similarity index 100% rename from bin/hooke rename to bin/hk.py diff --git a/doc/install.txt b/doc/install.txt index 8be9940..ae7912b 100644 --- a/doc/install.txt +++ b/doc/install.txt @@ -74,7 +74,7 @@ it's source directory:: $ wget -O hooke.zip http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.cgi/hooke/archive/tip.zip $ unzip hooke.zip $ cd hooke - $ python bin/hooke + $ python bin/hk.py You may need to give the full path for Python on Windows systems, and also check that the current working directory (`.`) is in your diff --git a/doc/tutorial.txt b/doc/tutorial.txt index 6bfe3e0..4345c91 100644 --- a/doc/tutorial.txt +++ b/doc/tutorial.txt @@ -42,7 +42,7 @@ to run the Hooke shell.:: If you are running hooke from the source directory (see :doc:`install`), the equivalent command is:: - $ python bin/hooke + $ python bin/hk.py You may need to give the full path for Python on Windows systems, and also check that the current working directory (`.`) is in your -- 2.26.2