From: Dmitry Selyutin Date: Fri, 20 Oct 2017 07:03:06 +0000 (+0300) Subject: vfs: fix copy-paste bug X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bcdffc9145ece0e8aa644eb7e1b3d84cbc751c6;p=thirdparty%2Fgnulib.git vfs: fix copy-paste bug --- diff --git a/pygnulib/vfs.py b/pygnulib/vfs.py index 9f9d8e15bc..c261135dd2 100644 --- a/pygnulib/vfs.py +++ b/pygnulib/vfs.py @@ -34,7 +34,7 @@ class Base: self.__table = {} for (key, value) in table.items(): _type_assert_(key, value, str) - self.__table[key] = _os_.root.normpath(value) + self.__table[key] = _os_.path.normpath(value) self.__root = root self.__patch = patch