removing lbryum

This commit is contained in:
Lex Berezhny 2018-05-28 23:13:28 -04:00 committed by Jack Robison
parent 1368a6e074
commit aab42e56bd
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 1 additions and 3 deletions

View file

@ -193,7 +193,7 @@ class Manager(object):
'build': platform['build'],
'wallet': {
'name': wallet,
'version': platform['lbryum_version'] if wallet == conf.LBRYUM_WALLET else None
'version': platform['lbrynet_version']
},
},
# TODO: expand os info to give linux/osx specific info

View file

@ -5,7 +5,6 @@ import os
from urllib2 import urlopen, URLError
from lbryschema import __version__ as lbryschema_version
from lbryum import __version__ as LBRYUM_VERSION
from lbrynet import build_type, __version__ as lbrynet_version
from lbrynet.conf import ROOT_DIR
@ -32,7 +31,6 @@ def get_platform(get_ip=True):
"os_release": platform.release(),
"os_system": platform.system(),
"lbrynet_version": get_lbrynet_version(),
"lbryum_version": LBRYUM_VERSION,
"lbryschema_version": lbryschema_version,
"build": build_type.BUILD, # CI server sets this during build step
}