From c0e63bb2f22a5651ef10a28c265f87226811c14d Mon Sep 17 00:00:00 2001
From: Dmitry Selyutin <ghostmansd@gmail.com>
Date: Fri, 29 Jun 2018 01:44:29 +0300
Subject: [PATCH] vfs: deprecate unused "backup" parameter

---
 pygnulib/vfs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pygnulib/vfs.py b/pygnulib/vfs.py
index 64f6ee7f57..d1477c1a77 100644
--- a/pygnulib/vfs.py
+++ b/pygnulib/vfs.py
@@ -281,7 +281,7 @@ def symlink(src_root, src_name, dst_root, dst_name, relative=True):
     _os.symlink(src_path, dst_path)
 
 
-def unlink(root, name, backup=True):
+def unlink(root, name):
     """Unlink a file, backing it up if necessary."""
     root = BaseVFS(".") if root is None else root
     mkdir(root, _os.path.dirname(name))
-- 
2.39.5