Skip to content

Commit

Permalink
fix typo in format string
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Jul 19, 2018
1 parent 5ecaacd commit 6ff9bdf
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 6ff9bdf

Please sign in to comment.