Skip to content

Commit

Permalink
change var name
Browse files Browse the repository at this point in the history
  • Loading branch information
n8pease committed Nov 15, 2017
1 parent a2652ad commit 5bc39bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/daf/persistence/butler.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ def cfgMatchesArgs(args, cfg):
for i, parent in enumerate(cfg.parents):
if isinstance(parent, RepositoryCfg):
continue
parentCfg, isOldButlerRepository = self._getRepositoryCfg(parent)
if isOldButlerRepository:
parentCfg, parentIsOldButlerRepository = self._getRepositoryCfg(parent)
if parentIsOldButlerRepository:
parentCfg.mapperArgs = cfg.mapperArgs
self.log.info(("Butler is replacing an Old Butler parent repository path '{}' "
"found in the parents list of a New Butler repositoryCfg: {} "
Expand Down

0 comments on commit 5bc39bf

Please sign in to comment.