]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3373] Typo on comment.
authorThomas Markwalder <tmark@isc.org>
Tue, 11 Mar 2014 12:07:00 +0000 (08:07 -0400)
committerThomas Markwalder <tmark@isc.org>
Tue, 11 Mar 2014 12:07:00 +0000 (08:07 -0400)
src/lib/python/isc/cc/data.py

index 0e084e232e57031c61a20811ee1780e9751c55fb..83e15bed225f2a35054223e604ea16ee2103c4d3 100644 (file)
@@ -56,7 +56,7 @@ def merge(orig, new):
        any elements which are themselves dictionaries. If an element value
        is None in new it will be removed in orig. Previously this method
        relied on dict.update but this does not do deep merges properly.
-       Raises a DataTypeError is either argument is not a dict"""
+       Raises a DataTypeError if either argument is not a dict"""
     if type(orig) != dict or type(new) != dict:
         raise DataTypeError("Not a dict in merge()")