Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 575a253 commit 81b9d9dCopy full SHA for 81b9d9d
1 file changed
Lib/plistlib.py
@@ -152,7 +152,7 @@ def _date_to_string(d):
152
def _escape(text):
153
m = _controlCharPat.search(text)
154
if m is not None:
155
- raise ValueError("strings can't contains control characters; "
+ raise ValueError("strings can't contain control characters; "
156
"use bytes instead")
157
text = text.replace("\r\n", "\n") # convert DOS line endings
158
text = text.replace("\r", "\n") # convert Mac line endings
0 commit comments