mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 17:55:20 +00:00
Fix typo.
This commit is contained in:
parent
5c4717b53c
commit
677f235e4b
1 changed files with 1 additions and 3 deletions
|
@ -197,7 +197,7 @@ def time_difference(distance_in_time, include_seconds):
|
||||||
elif distance_in_minutes < 525600:
|
elif distance_in_minutes < 525600:
|
||||||
return "%d months" % (round(distance_in_minutes / 43200))
|
return "%d months" % (round(distance_in_minutes / 43200))
|
||||||
elif distance_in_minutes < 1051200:
|
elif distance_in_minutes < 1051200:
|
||||||
return "about 1 yeas"
|
return "about 1 year"
|
||||||
else:
|
else:
|
||||||
return "over %d years" % (round(distance_in_minutes / 525600))
|
return "over %d years" % (round(distance_in_minutes / 525600))
|
||||||
|
|
||||||
|
@ -472,5 +472,3 @@ class StoreDict(dict):
|
||||||
if key in self.keys():
|
if key in self.keys():
|
||||||
dict.pop(self, key)
|
dict.pop(self, key)
|
||||||
self.save()
|
self.save()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue