diff options
-rw-r--r-- | src/pool.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.cc b/src/pool.cc index 9e06613f..00f4a3da 100644 --- a/src/pool.cc +++ b/src/pool.cc @@ -316,7 +316,7 @@ optional<price_point_t> commodity_pool_t::parse_price_directive(char * line) price_point_t point; point.when = datetime; - point.price.parse(symbol_and_price); + point.price.parse(symbol_and_price, PARSE_NO_MIGRATE); VERIFY(point.price.valid()); DEBUG("commodity.download", "Looking up symbol: " << symbol); |