hgext/remotefilelog/contentstore.py
changeset 43506 9f70512ae2cf
parent 43117 8ff1ecfadcd1
child 44452 9d2b2df2c2ba
--- a/hgext/remotefilelog/contentstore.py	Sun Nov 10 07:30:14 2019 -0800
+++ b/hgext/remotefilelog/contentstore.py	Fri Nov 08 11:19:20 2019 -0800
@@ -40,12 +40,12 @@
         super(unioncontentstore, self).__init__(*args, **kwargs)
 
         self.stores = args
-        self.writestore = kwargs.get(r'writestore')
+        self.writestore = kwargs.get('writestore')
 
         # If allowincomplete==True then the union store can return partial
         # delta chains, otherwise it will throw a KeyError if a full
         # deltachain can't be found.
-        self.allowincomplete = kwargs.get(r'allowincomplete', False)
+        self.allowincomplete = kwargs.get('allowincomplete', False)
 
     def get(self, name, node):
         """Fetches the full text revision contents of the given name+node pair.