From b290c821d1ff658887fb62cd0bd78e017f156bf8 Mon Sep 17 00:00:00 2001 From: Johannes 'fish' Ziemke Date: Mon, 25 Mar 2013 12:09:39 +0100 Subject: [PATCH] Renamed "localAssets" cmd flag to "useLocalAssets". --- web/web.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/web.go b/web/web.go index 050367257f..e3672a707e 100644 --- a/web/web.go +++ b/web/web.go @@ -27,7 +27,7 @@ import ( // Commandline flags. var ( listenAddress = flag.String("listenAddress", ":9090", "Address to listen on for web interface.") - useLocalAssets = flag.Bool("localAssets", false, "Read assets/templates from file instead of binary.") + useLocalAssets = flag.Bool("useLocalAssets", false, "Read assets/templates from file instead of binary.") ) func StartServing(appState *appstate.ApplicationState) {