diff options
Diffstat (limited to 'cmd/serve.go')
-rw-r--r-- | cmd/serve.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/serve.go b/cmd/serve.go index 305aaa6486..cca00b75cf 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -15,13 +15,13 @@ import ( "github.com/Unknwon/com" "github.com/codegangsta/cli" + gouuid "github.com/satori/go.uuid" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/base" "github.com/gogits/gogs/modules/httplib" "github.com/gogits/gogs/modules/log" "github.com/gogits/gogs/modules/setting" - "github.com/gogits/gogs/modules/uuid" ) const ( @@ -250,7 +250,7 @@ func runServ(c *cli.Context) { } } - uuid := uuid.NewV4().String() + uuid := gouuid.NewV4().String() os.Setenv("uuid", uuid) // Special handle for Windows. |