Skip to content

Commit 341f456

Browse files
committed
Python2 Compatibility
Ensure tzname() returns a string (not unicode).
1 parent d11d02c commit 341f456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webexteamssdk/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ class ZuluTimeZone(tzinfo):
255255

256256
def tzname(self, dt):
257257
"""Time Zone Name."""
258-
return "Z"
258+
return str("Z")
259259

260260
def utcoffset(self, dt):
261261
"""UTC Offset."""

0 commit comments

Comments
 (0)