blob: 707ce340e48ac419eb954dc0f4696b2be65efa62 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals
import ledger
for post in ledger.read_journal(__file__.replace(".py", "_py.test")).query("income"):
print(unicode(post.tag("Reference")))
|