summaryrefslogtreecommitdiff
path: root/crawler/shops.go
diff options
context:
space:
mode:
authorhorus2018-05-14 20:12:02 +0200
committerhorus2018-05-14 20:12:02 +0200
commitad0d5d2211fe1db2d58a2a2ae084403f73f9dfdb (patch)
tree16bc3fc261ff6a393b63ee518453b51952bf7a3f /crawler/shops.go
parentd7056ac8134b3e283b6336182a2d415e12d265de (diff)
downloadalkobote-ad0d5d2211fe1db2d58a2a2ae084403f73f9dfdb.tar.gz
Bugfix. (crawler)
Diffstat (limited to 'crawler/shops.go')
-rw-r--r--crawler/shops.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawler/shops.go b/crawler/shops.go
index a08a873..d9fcc0d 100644
--- a/crawler/shops.go
+++ b/crawler/shops.go
@@ -100,7 +100,7 @@ func (app *App) getShops() ([]Shop, error) {
var shop_query string
if len(app.Config.ShopIDs) > 0 {
- shopIDs := strings.Join(app.Config.ShopIDs, `", "`)
+ shopIDs := strings.Join(app.Config.ShopIDs, `, `)
if shopIDs != "" {
shop_query = " WHERE id IN (" + shopIDs + ")"
}