mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
@@ -46,9 +46,9 @@ class CountStat(object):
|
||||
else: # frequency == CountStat.DAY
|
||||
self.interval = timedelta(days=1)
|
||||
|
||||
def __unicode__(self):
|
||||
def __str__(self):
|
||||
# type: () -> Text
|
||||
return u"<CountStat: %s>" % (self.property,)
|
||||
return "<CountStat: %s>" % (self.property,)
|
||||
|
||||
class LoggingCountStat(CountStat):
|
||||
def __init__(self, property, output_table, frequency):
|
||||
|
||||
Reference in New Issue
Block a user