Output a pair when writing relative date values to scheme file.

So that the can be properly recognized on input.
This commit is contained in:
John Ralls 2021-08-19 09:48:44 -07:00
parent b3f96701a0
commit 62ab148a3e

View File

@ -557,6 +557,6 @@ gnc_relative_date_to_time64(RelativeDatePeriod period)
std::ostream&
operator<<(std::ostream& ostr, RelativeDatePeriod per)
{
ostr << gnc_relative_date_display_string(per);
ostr << "'reldate . " << gnc_relative_date_display_string(per);
return ostr;
}