Administrator
2023-11-17 fd14e20780e2c7fc86b1d8627f26cebf791a8597
bug修复
1个文件已修改
2 ■■■ 已修改文件
l2/l2_sell_manager.py 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
l2/l2_sell_manager.py
@@ -84,7 +84,7 @@
        if int(time_str.replace(":", "")) > int(cuurent[0].replace(":", "")):
            return cuurent
        last = self.__last_total_sell_data_cache.get(code)
        if int(time_str.replace(":", "")) > int(last[0].replace(":", "")):
        if last and int(time_str.replace(":", "")) > int(last[0].replace(":", "")):
            return last
        return None