From af08883b6950beff8e5854732a4f6d546c89a9f0 Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 16 Jun 2018 10:13:33 -0400 Subject: [PATCH] fix ability to specify a specific price scraper to use from the CLI --- src/mtgcoll/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mtgcoll/core.clj b/src/mtgcoll/core.clj index b4b152b..06f46c8 100644 --- a/src/mtgcoll/core.clj +++ b/src/mtgcoll/core.clj @@ -103,7 +103,7 @@ (do (mount/start-with-args args #'config/app-config, #'db/db) (if (seq arguments) - (update-prices! (first arguments)) + (update-prices! (keyword (first arguments))) (update-prices!))) :scrape-images