From 16460d54748598d2a51a7ef926236fdc72ecd069 Mon Sep 17 00:00:00 2001 From: Stefano Mazzocchi Date: Tue, 16 Aug 2011 16:26:32 +0000 Subject: [PATCH] fix typo git-svn-id: http://google-refine.googlecode.com/svn/trunk@2206 7d457c2a-affb-35e4-300a-418c747d4874 --- refine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refine b/refine index e5f11b832..8cae15b07 100755 --- a/refine +++ b/refine @@ -136,7 +136,7 @@ check_python() { fi PYTHON_VERSION="`$PYTHON --version 2>&1 | cut -f 2 -d ' ' | cut -f 1,2 -d .`" fi - if [ "$PYTHON_VERSION" != "2.5" ] && [ "$PYTHON_VERSION" != "2.6" ]] ; then + if [ "$PYTHON_VERSION" != "2.5" ] && [ "$PYTHON_VERSION" != "2.6" ] ; then error "This action requires python version 2.5.x, 2.6.x. You can download it for free at http://www.python.org/" fi }