Skip to content

Commit

Permalink
propagate filename fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Srinivas11789 committed Jul 2, 2019
1 parent 1c656c1 commit 40cc9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Module/user_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def generate_graph(self):
self.progressbar.stop()

# Loding the generated map
options = self.option.get()+"_"+self.to_ip.get()+"_"+self.from_ip.get()
options = self.option.get()+"_"+self.to_ip.get().replace(".","-")+"_"+self.from_ip.get().replace(".", "-")
self.image_file = os.path.join(self.destination_report.get(), "Report", self.filename+"_"+options+".png")
if not os.path.exists(self.image_file):
t1 = threading.Thread(target=plot_lan_network.plotLan, args=(self.filename, self.destination_report.get(), self.option.get(), self.to_ip.get(), self.from_ip.get()))
Expand Down

0 comments on commit 40cc9b7

Please sign in to comment.