comparison contrib/hgk @ 2058:7e0dd64b0718

Use the new format of setting tags in view extension (Debian bug #361897)
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 11 Apr 2006 12:44:13 +0200
parents c91966c3bbf5
children 936b615eb44e
comparison
equal deleted inserted replaced
2057:fef2d653beaf 2058:7e0dd64b0718
3446 if {[info exists tagids($tag)]} { 3446 if {[info exists tagids($tag)]} {
3447 error_popup "Tag \"$tag\" already exists" 3447 error_popup "Tag \"$tag\" already exists"
3448 return 3448 return
3449 } 3449 }
3450 if {[catch { 3450 if {[catch {
3451 set out [exec hg tag $tag $id] 3451 set out [exec hg tag -r $id $tag]
3452 } err]} { 3452 } err]} {
3453 error_popup "Error creating tag: $err" 3453 error_popup "Error creating tag: $err"
3454 return 3454 return
3455 } 3455 }
3456 3456