summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index 6df4924..892a94c 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -138,7 +138,7 @@ def copystat(src, dst, symlinks=False):
only if both `src` and `dst` are symlinks.
"""
- def _nop(*args):
+ def _nop(*args, ns=None):
pass
if symlinks and os.path.islink(src) and os.path.islink(dst):