summaryrefslogtreecommitdiff
path: root/src/pool.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-24 03:25:46 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-24 03:25:46 -0500
commitb1d6ea876c5ff0dd2f7f7688866f9e8c91ffa8db (patch)
tree510e72bd9a83b8b5d0148478fa23f19205d148e6 /src/pool.cc
parent875c5366bbe10347ac40a8aa9f016bbddbb7989d (diff)
downloadfork-ledger-b1d6ea876c5ff0dd2f7f7688866f9e8c91ffa8db.tar.gz
fork-ledger-b1d6ea876c5ff0dd2f7f7688866f9e8c91ffa8db.tar.bz2
fork-ledger-b1d6ea876c5ff0dd2f7f7688866f9e8c91ffa8db.zip
Don't migrate commodity details from pricing entries
Diffstat (limited to 'src/pool.cc')
-rw-r--r--src/pool.cc2
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);