]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
python/xattr: remove unused variable
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Thu, 11 Oct 2018 00:14:32 +0000 (13:14 +1300)
committerDouglas Bagnall <dbagnall@samba.org>
Thu, 1 Nov 2018 04:08:14 +0000 (05:08 +0100)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Noel Power <noel.power@suse.com>
python/samba/xattr.py

index 47126906f88787add238fcfd8a3530469a987038..19eb67ab315786a8f6ba7393966f1c4ef782837f 100644 (file)
@@ -45,7 +45,6 @@ def copytree_with_xattrs(src, dst):
     names = os.listdir(src)
 
     os.makedirs(dst)
-    errors = []
     for name in names:
         srcname = os.path.join(src, name)
         dstname = os.path.join(dst, name)