From: Rob Sayre Date: Wed, 29 Jun 2011 18:17:34 +0000 (-0700) Subject: Add a break statement, just in case. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=aee8542ec06294f65b98a582ec159dccbea78aaf;p=pdf.js.git Add a break statement, just in case. --- diff --git a/test/test.py b/test/test.py index 96ff816..17e1fd1 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)