Skip to content

Commit

Permalink
Merge pull request #56 from lsst/tickets/DM-15158
Browse files Browse the repository at this point in the history
fix typo in format string
  • Loading branch information
parejkoj committed Jul 19, 2018
2 parents 5ecaacd + 6ff9bdf commit f14cb0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/base/argumentParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def castDataIds(self, butler):
try:
idKeyTypeDict = butler.getKeys(datasetType=self.datasetType, level=self.level)
except KeyError as e:
msg = "Cannot get keys for datasetType %s at level %s: %s" % (self.datasetType, self.level)
msg = "Cannot get keys for datasetType %s at level %s" % (self.datasetType, self.level)
raise KeyError(msg) from e

for dataDict in self.idList:
Expand Down

0 comments on commit f14cb0b

Please sign in to comment.