diff --git a/README.md b/README.md
index 0313216..840b94b 100644
--- a/README.md
+++ b/README.md
@@ -56,12 +56,12 @@ Outputs:
jmoiron.net blog
http://jmoiron.net/blog
- 2013-01-16T03:22:24-05:00
+ 2013-01-16T03:26:01-05:00
discussion about tech, footie, photos
Limiting Concurrency in Go
- 0001-01-01T00:00:00Z
+ 2013-01-16T03:26:01-05:00
tag:jmoiron.net,2013-01-16:/blog/limiting-concurrency-in-go/
A discussion on controlled parallelism in golang
@@ -72,7 +72,7 @@ Outputs:
Logic-less Template Redux
- 0001-01-01T00:00:00Z
+ 2013-01-16T03:26:01-05:00
tag:jmoiron.net,2013-01-16:/blog/logicless-template-redux/
More thoughts on logicless templates
@@ -80,7 +80,7 @@ Outputs:
Idiomatic Code Reuse in Go
- 0001-01-01T00:00:00Z
+ 2013-01-16T03:26:01-05:00
tag:jmoiron.net,2013-01-16:/blog/idiomatic-code-reuse-in-go/
How to use interfaces <em>effectively</em>
diff --git a/atom.go b/atom.go
index 29962b4..bd54909 100644
--- a/atom.go
+++ b/atom.go
@@ -75,7 +75,7 @@ func newAtomEntry(i *Item) *AtomEntry {
Link: &AtomLink{Href: i.Link.Href, Rel: i.Link.Rel},
Summary: s,
Id: id,
- Updated: i.Updated.Format(time.RFC3339),
+ Updated: anyTimeFormat(time.RFC3339, i.Updated, i.Created),
AuthorName: name,
AuthorEmail: email,
}