hgext/remotefilelog/metadatastore.py
changeset 40610 13d4ad8d7801
parent 40495 3a333a582d7b
child 43076 2372284d9457
--- a/hgext/remotefilelog/metadatastore.py	Sat Oct 13 05:09:18 2018 +0300
+++ b/hgext/remotefilelog/metadatastore.py	Tue Nov 13 17:41:26 2018 +0300
@@ -11,12 +11,12 @@
         super(unionmetadatastore, self).__init__(*args, **kwargs)
 
         self.stores = args
-        self.writestore = kwargs.get('writestore')
+        self.writestore = kwargs.get(r'writestore')
 
         # If allowincomplete==True then the union store can return partial
         # ancestor lists, otherwise it will throw a KeyError if a full
         # history can't be found.
-        self.allowincomplete = kwargs.get('allowincomplete', False)
+        self.allowincomplete = kwargs.get(r'allowincomplete', False)
 
     def getancestors(self, name, node, known=None):
         """Returns as many ancestors as we're aware of.