Actions
Defect #18984
openmigrate_from_mantis with NoMethodError: strftime
Status:
Resolved
Priority:
Urgent
Assignee:
-
Category:
Importers
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
I am migrating from Mantis 1.1.8 to Redmine 2.6.1.stable
Using: rake --trace redmine:migrate_from_mantis RAILS_ENV="production"
I get the following error:
NoMethodError: undefined method `strftime' for 1411982898:Fixnum
I have applied: #10504
But with no success.
Any hints?
Files
Related issues
Updated by Toshi MARUYAMA almost 10 years ago
- Related to Defect #10504: migrate_from_mantis script fails on first project when trying to update version dates added
Updated by Paulo Moreira almost 10 years ago
- File patch_strftime_error patch_strftime_error added
- Status changed from New to Resolved
With the following changes:
- Bug files
- bug.bug_files.each do |file|
- a = Attachment.new :created_on => file.date_added
+ bug.bug_files.each do |file|
+ a = Attachment.new :created_on => Time.at(file.date_added)
The problem is resolved!
Attached patch
Actions