fix exception printing

This commit is contained in:
szecsip
2023-08-24 16:35:34 +00:00
parent 12167bc3a1
commit ceaff2a269

View File

@ -141,7 +141,7 @@ def get_main_pr_language(languages, files) -> str:
main_language_str = top_language main_language_str = top_language
except Exception as e: except Exception as e:
logging.info(e) logging.exception(e)
pass pass
return main_language_str return main_language_str