From: Douglas Bagnall Date: Thu, 11 Oct 2018 00:14:32 +0000 (+1300) Subject: python/xattr: remove unused variable X-Git-Tag: tdb-1.3.17~1005 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78f0860cff176d1d5842cb65684a49139c87a4ed;p=thirdparty%2Fsamba.git python/xattr: remove unused variable Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/python/samba/xattr.py b/python/samba/xattr.py index 47126906f88..19eb67ab315 100644 --- a/python/samba/xattr.py +++ b/python/samba/xattr.py @@ -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)