key.Id +fmt fixes
[epoint] / pkg / store / store.go
index 2a6d2f8..a27935c 100644 (file)
@@ -42,7 +42,7 @@ func (c *Conn) Get(name, k string) (v []byte, err error) {
        v, err = ioutil.ReadFile(filepath.Join(c.path, name, k))
        if err != nil {
                if p, ok := err.(*os.PathError); ok && p.Err == os.ENOENT {
-                       err = NotFoundError{name+"/"+k}
+                       err = NotFoundError{name + "/" + k}
                }
        }
        return