summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index 14baa71..2fca61c 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -7,13 +7,12 @@ XXX The functions here don't copy the resource fork or other metadata on Mac.
import os
import sys
import stat
-import exceptions
from os.path import abspath
__all__ = ["copyfileobj","copyfile","copymode","copystat","copy","copy2",
"copytree","move","rmtree","Error"]
-class Error(exceptions.EnvironmentError):
+class Error(EnvironmentError):
pass
def copyfileobj(fsrc, fdst, length=16*1024):