]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2617] more editorial fix; remove unnecessary quote, use double-quote for """
authorJINMEI Tatuya <jinmei@isc.org>
Fri, 1 Feb 2013 16:12:32 +0000 (08:12 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Fri, 1 Feb 2013 16:12:32 +0000 (08:12 -0800)
src/bin/msgq/msgq.py.in

index e8db466571d99c595da92c63b227aa97b6e4a102..4cabe8a6341ee93c84091ae63972b24ef33ebe49 100755 (executable)
@@ -71,7 +71,7 @@ SPECFILE_LOCATION = SPECFILE_PATH + "/msgq.spec"
 class MsgQReceiveError(Exception): pass
 
 class MsgQCloseOnReceive(Exception):
-    '''Exception raised when reading data from a socket results in 'shutdown'.
+    """Exception raised when reading data from a socket results in 'shutdown'.
 
     This happens when msgq received 0-length data.  This class holds whether
     it happens in the middle of reading (i.e. after reading some) via
@@ -79,7 +79,7 @@ class MsgQCloseOnReceive(Exception):
     This will be used by an upper layer catching the exception to distinguish
     the severity of the event.
 
-    "'''
+    """
     def __init__(self, reason, partial_read):
         self.partial_read = partial_read
         self.__reason = reason