fix identation error of 8561#c41511

This commit is contained in:
Josip 2015-05-16 06:06:14 +02:00
parent e0b56f65ef
commit 136bdd015a

View File

@ -148,8 +148,8 @@ def make_unknown(class_arg, explanation, class_func, commit_func, transaction,
if not hasattr(make_unknown, 'count'):
make_unknown.count = 1 #primitive static variable
tval = time.strftime('%x %X', time.localtime())
if sys.version_info[0] < 3:
tval = tval.decode(glocale.encoding)
if sys.version_info[0] < 3:
tval = tval.decode(glocale.encoding)
obj.set_name(_("Unknown, was missing %(time)s (%(count)d)") % {
'time': tval,
'count': make_unknown.count})