This commit is contained in:
pengtao 2019-11-20 16:00:20 +08:00
parent df89597db2
commit 55da4d4864

View File

@ -67,6 +67,14 @@ class TapWeeklyReport:
gameid, title, score, tags, order, watch, download, sell, review, reserve, topic = line
all_data[gameid][tap_type]["title"] = title
all_data[gameid][tap_type]["score"] = score
all_data[gameid][tap_type]["tags"] = tags
all_data[gameid][tap_type]["order"] = order
all_data[gameid][tap_type]["watch"] = watch
all_data[gameid][tap_type]["download"] = download
all_data[gameid][tap_type]["sell"] = sell
all_data[gameid][tap_type]["review"] = review
all_data[gameid][tap_type]["reserve"] = reserve
all_data[gameid][tap_type]["topic"] = topic
except Exception:
log.error(f"get {tap_type} details failed!", exc_info=True)