From f72ff886e3b2e905784611ae67887faa5741dce3 Mon Sep 17 00:00:00 2001 From: Mariusz Mazur Date: Mon, 31 Mar 2008 21:35:14 +0000 Subject: [PATCH] - no need to use the exceptions module; Exception is a builtin class Changed files: modules/ftptree.py -> 1.33 --- modules/ftptree.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/ftptree.py b/modules/ftptree.py index b56f812..efbec2c 100644 --- a/modules/ftptree.py +++ b/modules/ftptree.py @@ -7,8 +7,7 @@ errnum=0 quietmode=False -import exceptions -class SomeException(exceptions.Exception): +class SomeException(Exception): def __init__(self): return -- 2.44.0