| Currently only lower-case account names are supported, both on the
command line, and in the journal (in periodic transactions):
This works:
$ hledger balance -p nov
This does not:
$ hledger balance -p Nov
First transaction will parse, second will not:
```
cat every-month.journal                                                                                                                                ~/devel/haskell/darcs-get/hledger/examples
~ aug to sep
    assets
    expenses    $1
~ Aug to Sep
    assets
    expenses    $2
```
$../bin/hledger-budget bal -f every-month.journal
hledger-budget: Failed to parse "Aug to Sep": date parse error ()
This commit fixes both cases. | ||
|---|---|---|
| .. | ||
| Account.hs | ||
| AccountName.hs | ||
| Amount.hs | ||
| AutoTransaction.hs | ||
| Commodity.hs | ||
| Dates.hs | ||
| Journal.hs | ||
| Ledger.hs | ||
| MarketPrice.hs | ||
| Period.hs | ||
| Posting.hs | ||
| RawOptions.hs | ||
| StringFormat.hs | ||
| Timeclock.hs | ||
| Transaction.hs | ||
| Types.hs | ||