]> arthur.ath.cx Git - bup.git/blobdiff - lib/bup/hlinkdb.py
Drop vestigial compat.items
[bup.git] / lib / bup / hlinkdb.py
index 615e53f10937a741a44f5d2c32fbe6973f13b843..102ee3bd26096d150d4b18312e186e014bc710e9 100644 (file)
@@ -1,7 +1,6 @@
 
 import errno, os, pickle, tempfile
 
-from bup import compat
 from bup.compat import pending_raise
 
 
@@ -37,7 +36,7 @@ class HLinkDB:
                 f.close()
                 f = None
         # Set up the reverse hard link index.
-        for node, paths in compat.items(self._node_paths):
+        for node, paths in self._node_paths.items():
             for path in paths:
                 self._path_node[path] = node