Skip to content

Commit

Permalink
fix(dsgraph): fix breaking change from dataset pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
b5 committed Sep 18, 2018
1 parent 551daf2 commit 0954513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (nl NodeList) nodesFromDatasetRef(r Repo, ref *DatasetRef) *dsgraph.Node {
for _, ref := range q.Resources {
trans.AddLinks(dsgraph.Link{
From: trans,
To: nl.node(dsgraph.NtDataset, ref.Path().String()),
To: nl.node(dsgraph.NtDataset, ref.Path),
})
}
root.AddLinks(dsgraph.Link{From: root, To: trans})
Expand Down

0 comments on commit 0954513

Please sign in to comment.