Browse Source

[3373] Typo on comment.

Thomas Markwalder 11 years ago
parent
commit
ff46195513
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/python/isc/cc/data.py

+ 1 - 1
src/lib/python/isc/cc/data.py

@@ -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()")