changeset 22986:7b93b49286d0

histedit: update docstring on histeditstate.read() The docstring showed the previous class-less heritage of read(). Now that it's classy, update the docstring.
author Augie Fackler <raf@durin42.com>
date Thu, 16 Oct 2014 14:51:15 -0400
parents 0c14b9166da6
children e6d890e1ed4f
files hgext/histedit.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/histedit.py	Thu Oct 16 14:49:46 2014 -0400
+++ b/hgext/histedit.py	Thu Oct 16 14:51:15 2014 -0400
@@ -204,8 +204,7 @@
             self.replacements = replacements
 
     def read(self):
-        """Reads a state from file and returns a histeditstate object
-        """
+        """Load histedit state from disk and set fields appropriately."""
         try:
             fp = self.repo.vfs('histedit-state', 'r')
         except IOError, err: