Fix an issue with raise statements in the linter.

This commit is contained in:
Dave Halter
2015-09-13 23:28:14 +02:00
parent eecae7dd38
commit e7528198d3
3 changed files with 11 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
def raises():
raise KeyError()
def wrong_name():
#! 6 name-error
raise NotExistingException()