Skip to content

Commit

Permalink
Fixed bug in dia_object append method.
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscb committed Nov 15, 2017
1 parent ff44684 commit d24364b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ap/association/dia_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def append_dia_source(self, input_dia_source_record):
for name in self._dia_source_schema.getNames():
tmp_source_record.set(
self._dia_source_schema[name].asKey(),
input_dia_source_record.getSchema()[name].asKey())
input_dia_source_record.get(input_schema[name].asKey()))
else:
tmp_source_record = self._dia_source_catalog.getTable().copyRecord(
input_dia_source_record)
Expand Down

0 comments on commit d24364b

Please sign in to comment.