We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 341f456 commit 70c908fCopy full SHA for 70c908f
1 file changed
webexteamssdk/utils.py
@@ -32,6 +32,7 @@
32
33
from future import standard_library
34
standard_library.install_aliases()
35
+native_str = str
36
37
import json
38
import mimetypes
@@ -255,7 +256,8 @@ class ZuluTimeZone(tzinfo):
255
256
257
def tzname(self, dt):
258
"""Time Zone Name."""
- return str("Z")
259
+ # The future package's newstr is messing with Python2 compatibility
260
+ return native_str("Z")
261
262
def utcoffset(self, dt):
263
"""UTC Offset."""
0 commit comments