Skip to content

Commit

Permalink
Fix for issue Juniper#580 (Juniper#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidanandpujar authored May 14, 2024
1 parent 0b6195e commit 9fa948c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,8 @@ def load_configuration(self,
config = '\n'.join(map(lambda line: line.rstrip('\n'), lines))
self.logger.debug("Loading the supplied configuration.")
if src is not None:
load_args['path'] = src
abs_path_src = os.path.abspath(src) # For PyEZ persistent
load_args['path'] = abs_path_src
self.logger.debug("Loading the configuration from: %s.", src)
if template is not None:
load_args['template_path'] = template
Expand Down

0 comments on commit 9fa948c

Please sign in to comment.