diff options
Diffstat (limited to 'src/gotext.go')
-rw-r--r-- | src/gotext.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gotext.go b/src/gotext.go index 132a35b..f6f9a6f 100644 --- a/src/gotext.go +++ b/src/gotext.go @@ -154,7 +154,7 @@ func constructValue(val interface{}) string { right = right[1:len(right)] return left + right default: - panic(fmt.Sprintf("unknown type: %v", val)) // FIXME + return "" } } |