mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #244 from sayrer/master
fix exception throwing syntax
This commit is contained in:
commit
c1838bde7f
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class BaseBrowserCommand(object):
|
|||
self._fixupMacPath()
|
||||
|
||||
if not os.path.exists(self.path):
|
||||
throw("Path to browser '%s' does not exist." % self.path)
|
||||
raise Exception("Path to browser '%s' does not exist." % self.path)
|
||||
|
||||
def setup(self):
|
||||
self.tempDir = tempfile.mkdtemp()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue