From 6a6eedc29d4803f76a84dc7c8cf14f8051c444cb Mon Sep 17 00:00:00 2001 From: JesusZapata Date: Tue, 31 Jan 2017 20:14:07 +0000 Subject: [PATCH] [FIX] Fix comment line --- pylint_odoo/test_repo/test_module/except_pass.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylint_odoo/test_repo/test_module/except_pass.py b/pylint_odoo/test_repo/test_module/except_pass.py index 1537fb4e..b259d101 100644 --- a/pylint_odoo/test_repo/test_module/except_pass.py +++ b/pylint_odoo/test_repo/test_module/except_pass.py @@ -8,8 +8,8 @@ class TestExceptPass(object): def test_method(self): """Test method """ try: - raise Exception('Exception') # except-pass - except Exception: + raise Exception('Exception') + except Exception: # except-pass pass def test_2_method(self):