summaryrefslogtreecommitdiff
path: root/src/helsinki.at/rhimportd
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2015-12-10 16:59:30 (GMT)
committerChristian Pointner <equinox@helsinki.at>2015-12-10 16:59:30 (GMT)
commita454be72ed140ff2bf3e4338794885cde5fb9f58 (patch)
tree3d91f3c579e91eaf668ff6bf3dc383b037d08f92 /src/helsinki.at/rhimportd
parentfa921c13ae7d2fb82ab5801244b6b1e9ef7db371 (diff)
added add_cart function
Diffstat (limited to 'src/helsinki.at/rhimportd')
-rw-r--r--src/helsinki.at/rhimportd/ctrlWebSimple.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helsinki.at/rhimportd/ctrlWebSimple.go b/src/helsinki.at/rhimportd/ctrlWebSimple.go
index 1d28818..4cac593 100644
--- a/src/helsinki.at/rhimportd/ctrlWebSimple.go
+++ b/src/helsinki.at/rhimportd/ctrlWebSimple.go
@@ -68,7 +68,7 @@ func webSimpleResponse(w http.ResponseWriter) {
}
func webSimpleProgressCallback(step int, step_name string, progress float64, userdata interface{}) {
- fmt.Printf("Step %d / %s: %3.2f%%\r", step, step_name, progress * 100)
+ fmt.Printf("Step %d / %s: %3.2f%%\r", step, step_name, progress*100)
}
func webSimpleParseRequest(conf *rhimport.Config, rddb *rhimport.RdDb, trusted bool, r *http.Request) (ctx *rhimport.ImportContext, err error) {