This commit is contained in:
ingvar1995 2016-08-30 20:23:55 +03:00
parent d81e3e781b
commit 0fd75c5517
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Toxygen
Toxygen is powerfull cross-platform [Tox](https://tox.chat/) client written in pure Python3.
Toxygen is powerful cross-platform [Tox](https://tox.chat/) client written in pure Python3.
[![Release](https://img.shields.io/github/release/xveduk/toxygen.svg?style=flat)](https://github.com/toxygen-project/toxygen/releases/latest)
[![Stars](https://img.shields.io/github/stars/xveduk/toxygen.svg?style=flat)](https://github.com/toxygen-project/toxygen/stargazers)

View File

@ -31,7 +31,8 @@ def copy(src, dest):
def convert_time(t):
sec = int(t) - time.timezone
offset = time.timezone - time.daylight * 3600
sec = int(t) - offset
m, s = divmod(sec, 60)
h, m = divmod(m, 60)
d, h = divmod(h, 24)