diff --git a/Lib/shutil.py b/Lib/shutil.py index a4c1436f491..cb8d23f32c1 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -1008,4 +1008,3 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None): if _access_check(name, mode): return name return None -