forked from LBRYCommunity/lbry-sdk
8b1d75ea98
-previously the check for a new ui version was only at startup, which resulted in bugs persisting after they’d been fixed -add option to skip requirements check -try to load an existing ui if it can’t be obtained from github
8 lines
No EOL
202 B
Python
8 lines
No EOL
202 B
Python
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
|
log.setLevel(logging.ERROR)
|
|
|
|
__version__ = "0.3.4"
|
|
version = tuple(__version__.split('.')) |