Skip to content
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
053f4df
plot: link to cmd ref in output
jorgeorpinel May 7, 2020
cacdbc1
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 7, 2020
e53ce74
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 8, 2020
c9c5dac
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 9, 2020
5ee5396
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 12, 2020
7c949cc
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 13, 2020
a37455d
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 17, 2020
f8abddb
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 19, 2020
2a30107
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 25, 2020
2837182
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel May 27, 2020
12172f0
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 3, 2020
d37fc1b
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 7, 2020
3683c20
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 7, 2020
c1b0e9c
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 8, 2020
d893776
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 9, 2020
65ea103
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 10, 2020
295a44e
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 16, 2020
766ef33
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 18, 2020
b1dca86
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 19, 2020
8e70ab0
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 24, 2020
d6c3bf4
Merge branch 'master' of github.com:iterative/dvc
jorgeorpinel Jun 25, 2020
fc0d35e
plots: change non-plot output error msg
jorgeorpinel Jun 25, 2020
ddddd6e
Update dvc/repo/plots/__init__.py
jorgeorpinel Jun 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dvc/repo/plots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
class NotAPlotError(DvcException):
def __init__(self, out):
super().__init__(
f"'{out}' is not a plot. Use `dvc plots modify` to change that."
f"'{out}' is not a known plot. Use `dvc plots modify` to turn it "
"into one."
)


Expand Down