diff --git a/python 3/koans/about_none.py b/python 3/koans/about_none.py index c75e5a2..1b1e5a7 100644 --- a/python 3/koans/about_none.py +++ b/python 3/koans/about_none.py @@ -26,10 +26,13 @@ def test_what_exception_do_you_get_when_calling_nonexistent_methods_on_None(self Don't worry about what 'try' and 'except' do, we'll talk about this later """ + # Don't forget to unindent before you try to run this code block: try: None.some_method_none_does_not_know_about() except Exception as ex: ex2 = ex + + ex2 # What exception has been caught? self.assertEqual(__, ex2.__class__.__name__)