From eca1cf315ee795358f1186d3efa58073961e51cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Fr=C3=B6hle?= Date: Sun, 12 Jul 2020 14:15:59 +0200 Subject: [PATCH] fix #1559 - remove not need colon fix #1559 Former-commit-id: 868c18f6cab6207a3fd433354490746e231c5b51 --- _examples/mvc/overview/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_examples/mvc/overview/main.go b/_examples/mvc/overview/main.go index 03230030..7476d9b7 100644 --- a/_examples/mvc/overview/main.go +++ b/_examples/mvc/overview/main.go @@ -17,7 +17,7 @@ func main() { mvc.Configure(app.Party("/greet"), setup) // http://localhost:8080/greet?name=kataras - addr := ":" + environment.Getenv("PORT", ":8080") + addr := ":" + environment.Getenv("PORT", "8080") app.Listen(addr, iris.WithLogLevel("debug")) }