##// END OF EJS Templates
Merge pull request #5276 from pankajp/recreate-conn-file-if-deleted...
Min RK -
r15687:025c8775 merge
parent child Browse files
Show More
@@ -473,7 +473,7 class ConnectionFileMixin(Configurable):
473
473
474 def write_connection_file(self):
474 def write_connection_file(self):
475 """Write connection info to JSON dict in self.connection_file."""
475 """Write connection info to JSON dict in self.connection_file."""
476 if self._connection_file_written:
476 if self._connection_file_written and os.path.exists(self.connection_file):
477 return
477 return
478
478
479 self.connection_file, cfg = write_connection_file(self.connection_file,
479 self.connection_file, cfg = write_connection_file(self.connection_file,
General Comments 0
You need to be logged in to leave comments. Login now