Mercurial > public > mercurial-scm > hg-stable
diff mercurial/scmutil.py @ 16479:fc04698fa778 stable
opener: coding style, use triple quotes for doc string
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 18 Apr 2012 15:16:15 +0200 |
parents | 154219f3a6a4 |
children | 525fdb738975 2a0efa1112ac |
line wrap: on
line diff
--- a/mercurial/scmutil.py Thu Apr 19 17:08:12 2012 +0200 +++ b/mercurial/scmutil.py Wed Apr 18 15:16:15 2012 +0200 @@ -160,7 +160,7 @@ raise NotImplementedError('attempted instantiating ' + str(type(self))) def tryread(self, path): - 'gracefully return an empty string for missing files' + '''gracefully return an empty string for missing files''' try: return self.read(path) except IOError, inst: