Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Ambrois <aa@andres.(none)>2009-01-30 06:32:01 (GMT)
committer Andrés Ambrois <aa@andres.(none)>2009-01-30 06:32:01 (GMT)
commitf6773d2e5a0e03a04f13a159ae945f0f5b12ee01 (patch)
tree1c1b5eba0d101e4cc5623bbf9ed5a1d0427cf83c
parent292bc95e49638db748966111cde35722a71f9bdc (diff)
Change default path for gnugo to bin/
-rw-r--r--gtp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtp.py b/gtp.py
index 646c271..9b0b620 100644
--- a/gtp.py
+++ b/gtp.py
@@ -31,7 +31,7 @@ def search_for_gnugo():
for path in paths:
if exists(join(path, 'gnugo')):
return abspath(join(path, 'gnugo'))
- default_path = join(get_bundle_path(), 'gnugo', 'gnugo')
+ default_path = join(get_bundle_path(), 'bin', 'gnugo')
if exists(default_path):
return abspath(default_path)
return False