D3653: state: removing remaining instances of opts class variable

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Thu May 24 18:25:23 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG6f67bfe4b82f: state: removing remaining instances of opts class variable (authored by pulkit, committed by ).

CHANGED PRIOR TO COMMIT
  https://phab.mercurial-scm.org/D3653?vs=8884&id=8887#toc

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3653?vs=8884&id=8887

REVISION DETAIL
  https://phab.mercurial-scm.org/D3653

AFFECTED FILES
  mercurial/state.py

CHANGE DETAILS

diff --git a/mercurial/state.py b/mercurial/state.py
--- a/mercurial/state.py
+++ b/mercurial/state.py
@@ -40,10 +40,9 @@
     disk.
     """
 
-    def __init__(self, repo, fname, opts=None):
+    def __init__(self, repo, fname):
         """ repo is the repo object
         fname is the file name in which data should be stored in .hg directory
-        opts is a dictionary of data of the statefile
         """
         self._repo = repo
         self.fname = fname
@@ -63,7 +62,7 @@
 
         with self._repo.vfs(self.fname, 'wb', atomictemp=True) as fp:
             fp.write('%d\n' % version)
-            cbor.dump(self.opts, fp, canonical=True)
+            cbor.dump(data, fp, canonical=True)
 
     def _read(self):
         """reads the state file and returns a dictionary which contain



To: pulkit, #hg-reviewers, martinvonz
Cc: martinvonz, mercurial-devel


More information about the Mercurial-devel mailing list