Skip to content
This repository was archived by the owner on Jan 8, 2025. It is now read-only.

lose the reparse parse #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/pivotal-tracker/story.rb
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ def to_xml
# xml.jira_url "#{jira_url}"
xml.other_id "#{other_id}" if other_id
xml.integration_id "#{integration_id}" if integration_id
xml.created_at DateTime.parse(created_at.to_s).to_s if created_at
xml.accepted_at DateTime.parse(accepted_at.to_s).to_s if accepted_at
xml.deadline DateTime.parse(deadline.to_s).to_s if deadline
xml.created_at created_at if created_at
xml.accepted_at accepted_at if accepted_at
xml.deadline deadline if deadline
}
end
return builder.to_xml
Expand Down