# HG changeset patch # User Thomas Junk # Date 1559125804 -7200 # Node ID 9538a0aeacde1dcf7909b2ebcf66d079e7f0b27d # Parent 6cdfc05fd6b0d973f68bc2142cc4df49408c4307 stretch_import: provide full information for summary diff -r 6cdfc05fd6b0 -r 9538a0aeacde pkg/imports/st.go --- a/pkg/imports/st.go Wed May 29 10:37:01 2019 +0200 +++ b/pkg/imports/st.go Wed May 29 12:30:04 2019 +0200 @@ -231,11 +231,7 @@ } feedback.Info("Import of stretch was successful") - summary := struct { - Stretch string `json:"stretch"` - }{ - Stretch: st.Name, - } + summary := st // provide full information for summary - return &summary, nil + return summary, nil }