diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 1769adba42542a811e9ff5ab73318e567ee30187..26f766f3175fe206cee7cf6b9716c4d7a6c7286d 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -73,3 +73,6 @@ class KyReport: info['synthesis_info'] = DATACOLLECTION().get_synthesis_tag_data() if os.path.exists(Config.get_output_path() + 'memInfo.txt'): info['mem_info'] = self.build_info(Config.get_output_path() + 'memInfo.txt') + if os.path.exists(Config.get_output_path() + 'netInfo.txt'): + info['net_info'] = self.build_info(Config.get_output_path() + 'netInfo.txt') +