ui and docs update

This commit is contained in:
ingvar1995 2016-02-26 17:32:36 +03:00
parent 30aa254d39
commit b592ca3f00
3 changed files with 34 additions and 9 deletions

View file

@ -1,4 +1,5 @@
import os
import time
program_version = '0.0.1 (alpha)'
@ -21,6 +22,10 @@ def curr_directory():
return os.path.dirname(os.path.realpath(__file__))
def curr_time():
return time.strftime("%H:%M:")
class Singleton(object):
def __new__(cls, *args):