summaryrefslogtreecommitdiff
path: root/crawler/shops.go
diff options
context:
space:
mode:
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 + ")"
}