mercurial/scmutil.py
branchstable
changeset 16479 fc04698fa778
parent 16455 154219f3a6a4
child 16683 525fdb738975
child 16790 2a0efa1112ac
--- 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: