diff options
author | John Wiegley <johnw@newartisans.com> | 2010-03-17 00:56:21 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-03-17 00:56:21 -0400 |
commit | 0e34d08b8d9100a59e8d457cbe7343462a4d8739 (patch) | |
tree | d23f475e1f0e9bf8309f80efa25d2a56d0d7931e /src/chain.cc | |
parent | ba09f29a3c50acbb0537cfaca8b1257f4a931c63 (diff) | |
download | fork-ledger-0e34d08b8d9100a59e8d457cbe7343462a4d8739.tar.gz fork-ledger-0e34d08b8d9100a59e8d457cbe7343462a4d8739.tar.bz2 fork-ledger-0e34d08b8d9100a59e8d457cbe7343462a4d8739.zip |
The --pivot=X option now only matches the tag "X"
Diffstat (limited to 'src/chain.cc')
-rw-r--r-- | src/chain.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.cc b/src/chain.cc index 7f5a1a07..86f639ad 100644 --- a/src/chain.cc +++ b/src/chain.cc @@ -169,7 +169,7 @@ post_handler_ptr chain_post_handlers(report_t& report, } else if (report.HANDLED(pivot_)) { string pivot = report.HANDLER(pivot_).str(); - pivot = string("\"") + pivot + ":\" + tag(/" + pivot + "/)"; + pivot = string("\"") + pivot + ":\" + tag(\"" + pivot + "\")"; handler.reset(new transfer_details(handler, transfer_details::SET_ACCOUNT, report.session.journal->master, pivot, report)); |