changeset 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 ee553e6cd8c4
children 123f96c4d454
files mercurial/scmutil.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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: