From aee8542ec06294f65b98a582ec159dccbea78aaf Mon Sep 17 00:00:00 2001 From: Rob Sayre Date: Wed, 29 Jun 2011 11:17:34 -0700 Subject: [PATCH] Add a break statement, just in case. --- test/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.py b/test/test.py index 96ff81672..17e1fd19d 100644 --- a/test/test.py +++ b/test/test.py @@ -248,6 +248,7 @@ def makeBrowserCommand(browser): if (name and name.find(key) > -1) or path.find(key) > -1: command = types[key](browser) command.name = command.name or key + break if command is None: raise Exception("Unrecognized browser: %s" % browser)