Skip to content

Commit

Permalink
Support yaml type (as string)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoup committed Dec 22, 2010
1 parent d0779a2 commit 09a4e72
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lighthouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ def _string(self, data):
'2008-09-25 20:04:13+01:00'
"""
return str(data)

def _yaml(self, data):
return self._string(data)

def _nil(self, data):
"""Returns None
Expand Down

0 comments on commit 09a4e72

Please sign in to comment.