Add a break statement, just in case.

This commit is contained in:
Rob Sayre 2011-06-29 11:17:34 -07:00
parent a50136709f
commit aee8542ec0

View File

@ -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)