fix syntax error in locate



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1700 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/autotest_utils.py b/client/bin/autotest_utils.py
index 89012e5..fdea49f 100755
--- a/client/bin/autotest_utils.py
+++ b/client/bin/autotest_utils.py
@@ -481,7 +481,7 @@
     for path, dirs, files in os.walk(root):
         for f in files:
             if fnmatch.fnmatch(f, pattern):
-                yield os.path.abspath(os.path.join(path, f)
+                yield os.path.abspath(os.path.join(path, f))
 
 
 def freespace(path):