Remove unused names in except clauses
This commit is contained in:
parent
25785e9ca5
commit
cfcc9779fc
|
@ -267,7 +267,7 @@ def rmtree(path, ignore_errors=False, onerror=None):
|
|||
names = []
|
||||
try:
|
||||
names = os.listdir(path)
|
||||
except os.error as err:
|
||||
except os.error:
|
||||
onerror(os.listdir, path, sys.exc_info())
|
||||
for name in names:
|
||||
fullname = os.path.join(path, name)
|
||||
|
@ -280,7 +280,7 @@ def rmtree(path, ignore_errors=False, onerror=None):
|
|||
else:
|
||||
try:
|
||||
os.remove(fullname)
|
||||
except os.error as err:
|
||||
except os.error:
|
||||
onerror(os.remove, fullname, sys.exc_info())
|
||||
try:
|
||||
os.rmdir(path)
|
||||
|
@ -323,7 +323,7 @@ def move(src, dst):
|
|||
raise Error("Destination path '%s' already exists" % real_dst)
|
||||
try:
|
||||
os.rename(src, real_dst)
|
||||
except OSError as exc:
|
||||
except OSError:
|
||||
if os.path.isdir(src):
|
||||
if _destinsrc(src, dst):
|
||||
raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst))
|
||||
|
|
Loading…
Reference in New Issue