commit | 83c03e2d94da97e715b18c29e27a553832b09065 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Feb 23 23:07:51 1999 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Feb 23 23:07:51 1999 +0000 |
tree | 5b0711ff722aeeeb5dfae78e125f18075ce15edb | |
parent | b6cf9a4fc46344ea346643cb58c36792c03a0bf0 [diff] |
Add import sys, needed by reference to sys.exc_info() in rmtree(). Discovered by Mitch Chapman.
diff --git a/Lib/shutil.py b/Lib/shutil.py index b44a069..eb334f7 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py
@@ -5,6 +5,7 @@ """ import os +import sys import stat