fix directory return bug
This commit is contained in:
parent
a3c937c202
commit
22e7dc617b
@ -71,5 +71,5 @@ def 全项目切换英文(txt, top_p, temperature, chatbot, history, sys_prompt,
|
|||||||
|
|
||||||
# 备份一个文件
|
# 备份一个文件
|
||||||
res = write_results_to_file(history)
|
res = write_results_to_file(history)
|
||||||
chatbot.append(("给爷一份任务执行报告", res))
|
chatbot.append(("生成一份任务执行报告", res))
|
||||||
yield chatbot, history, '正常'
|
yield chatbot, history, '正常'
|
||||||
|
@ -184,6 +184,7 @@ def find_recent_files(directory):
|
|||||||
if file_path.endswith('.log'): continue
|
if file_path.endswith('.log'): continue
|
||||||
created_time = os.path.getctime(file_path)
|
created_time = os.path.getctime(file_path)
|
||||||
if created_time >= one_minute_ago:
|
if created_time >= one_minute_ago:
|
||||||
|
if os.path.isdir(file_path): continue
|
||||||
recent_files.append(file_path)
|
recent_files.append(file_path)
|
||||||
|
|
||||||
return recent_files
|
return recent_files
|
||||||
|
Loading…
x
Reference in New Issue
Block a user