Skip to content

Commit

Permalink
Merge pull request #483 from ifreecarve/2013-01-17_build_1059
Browse files Browse the repository at this point in the history
Fixed typo that broke build 1059
  • Loading branch information
MauriceManning committed Jan 17, 2013
2 parents 381f07c + 9bbafd0 commit ebe347a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ion/services/sa/observatory/observatory_management_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,8 +1179,8 @@ def retrieve_model_objs(rsrc_list, object_type):
model_dict = dict(zip(model_uniq, model_objs))
return [model_dict.get(m) for m in model_list]

extended_site.instrument_models = retrieve_model_objs(extended_site.instruments, RT.InstrumentDevice)
extended_site.platform_models = retrieve_model_objs(extended_site.platforms, RT.PlatformDevice)
extended_site.instrument_models = retrieve_model_objs(extended_site.instrument_devices, RT.InstrumentDevice)
extended_site.platform_models = retrieve_model_objs(extended_site.platform_devices, RT.PlatformDevice)


s_unknown = StatusType.STATUS_UNKNOWN
Expand Down

0 comments on commit ebe347a

Please sign in to comment.