我从 rethinkdb 集群中获取的行包括带有时区的日期对象。这是一个例子:
ipython> dt
datetime.datetime(2015, 12, 18, 0, 22, 4, 644000, tzinfo=<rethinkdb.ast.RqlTzinfo object at 0x7f072c5d6250>)
我正在尝试将它们字符串化为某种格式:
dt.strftime("%d-%m-%Y %H:%M:%S (%Z)")
它导致
*** TypeError: tzinfo.tzname() must return None or a string, not 'unicode'
我该如何克服呢?