commit | 3fa29f7cd77970df2d85db3e7565cf0ad2548883 | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Sun Oct 30 20:18:50 2011 +0100 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Sun Oct 30 20:18:50 2011 +0100 |
tree | 81ed4ad710f659a3383b362a5e426cafe71189da | |
parent | 2b50a01d11710c0a01f90fa4398b717a63b1d0d8 [diff] [blame] |
Closes #13291: NameError in xmlrpc package.
diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index 19d4d69..9312344 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py
@@ -302,7 +302,7 @@ elif datetime and isinstance(other, datetime.datetime): s = self.value o = other.strftime("%Y%m%dT%H:%M:%S") - elif isinstance(other, (str, unicode)): + elif isinstance(other, str): s = self.value o = other elif hasattr(other, "timetuple"):