mirror of https://github.com/fail2ban/fail2ban
Fix pep8 E701 multiple statements on one line (colon)
parent
1a98e15328
commit
fe5e7a023e
|
@ -66,7 +66,8 @@ class SetupTest(unittest.TestCase):
|
|||
" -- cannot locate setup.py")
|
||||
|
||||
def testSetupInstallRoot(self):
|
||||
if not self.setup: return # if verbose skip didn't work out
|
||||
if not self.setup:
|
||||
return # if verbose skip didn't work out
|
||||
tmp = tempfile.mkdtemp()
|
||||
try:
|
||||
os.system("%s %s install --root=%s >/dev/null"
|
||||
|
@ -136,8 +137,10 @@ class TestsUtilsTest(unittest.TestCase):
|
|||
raise ValueError()
|
||||
|
||||
def deep_function(i):
|
||||
if i: deep_function(i-1)
|
||||
else: func_raise()
|
||||
if i:
|
||||
deep_function(i-1)
|
||||
else:
|
||||
func_raise()
|
||||
|
||||
try:
|
||||
print deep_function(3)
|
||||
|
|
Loading…
Reference in New Issue