examples: python: use isinstance() to suport inheritance

This commit is contained in:
Alexey Ivanov 2012-12-10 04:55:22 +08:00
Родитель a5c6a78244
Коммит 0191e95a43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@ class StatsdClient(object):
Updates one or more stats counters by arbitrary amounts
>>> Statsd.update_stats('some.int',10)
"""
if (type(stats) is not list):
if isinstance(stats, list):
stats = [stats]
data = {}
for stat in stats: