summaryrefslogtreecommitdiff
path: root/tagWindow.go
diff options
context:
space:
mode:
Diffstat (limited to 'tagWindow.go')
-rw-r--r--tagWindow.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tagWindow.go b/tagWindow.go
index fbd67dc..07effd3 100644
--- a/tagWindow.go
+++ b/tagWindow.go
@@ -51,7 +51,7 @@ func (rs *RepoStatus) makeTagBox(box *gui.Node) error {
}
tagB := new(GitTagBox)
rs.Tags = tagB
- tagB.group = box.NewGroup(".git tags for " + rs.String())
+ tagB.group = box.NewGroup(".git tags for " + rs.Path())
// tagB.group.NewButton("prune tags", func() {
// tagB.Prune()
@@ -110,9 +110,9 @@ func (rs *RepoStatus) makeTagBox(box *gui.Node) error {
all = append(all, []string{"git", "push", "--delete", "origin", tagversion})
if rs.DoAll(all) {
- log.Info("TAG DELETED", rs.String(), tagversion)
+ log.Info("TAG DELETED", rs.Path(), tagversion)
} else {
- log.Info("TAG DELETE FAILED", rs.String(), tagversion)
+ log.Info("TAG DELETE FAILED", rs.Path(), tagversion)
}
})