Revision 90
Added by Aaron Marcuse-Kubitza almost 13 years ago
xml_func.py | ||
---|---|---|
19 | 19 |
|
20 | 20 |
def date(items): |
21 | 21 |
items = dict(items) |
22 |
return ' '.join([items['year'], items.get('month', '1'),
|
|
22 |
return '-'.join([items['year'], items.get('month', '1'),
|
|
23 | 23 |
items.get('day', '1')]) |
24 | 24 |
|
25 | 25 |
def name(items): |
Also available in: Unified diff
Fixed name XML function. Fixed accept_test_output.