commit | 074bf36f6fa00842db9de5de44841003319f68a2 | [log] [tgz] |
---|---|---|
author | Jiri Simsa <jsimsa@google.com> | Tue Feb 17 09:29:45 2015 -0800 |
committer | Jiri Simsa <jsimsa@google.com> | Tue Feb 17 09:29:48 2015 -0800 |
tree | a8b3b12cea6732426e02a0d374f9ec220ead21d4 | |
parent | fa9341a3f6948cb7cf17b8fab0b126544ec2ab84 [diff] [blame] |
verror: addressing https://github.com/veyron/release-issues/issues/1080 MultiPart: 1/3 Change-Id: I190b1dd5004025dac6acfd58f59483588bf70d9d
diff --git a/lib/exec/config.go b/lib/exec/config.go index 67427b3..f6eae2e 100644 --- a/lib/exec/config.go +++ b/lib/exec/config.go
@@ -61,7 +61,7 @@ defer c.RUnlock() v, ok := c.m[key] if !ok { - return "", verror.New(verror.NoExist, nil, "config.Get", key) + return "", verror.New(verror.ErrNoExist, nil, "config.Get", key) } return v, nil }