blob: d9f7255c0ea104166f04a0d95228c6ca576c0bf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
if True:
#############################################################################
def download_manaverse(fname):
installdir=get_path("manaplus")
status_update("Downloading %s on RAM..." % fname, 62)
r=requests.get(persistent.host+"/%s" % fname, timeout=60.0)
if (r.status_code != 200):
status_update("Failure retrieving M+: ERROR %d" % r.status_code)
return False
|