summaryrefslogtreecommitdiff
path: root/report/report_content.rb
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-05-10 09:50:18 +0200
committermguetlein <martin.guetlein@gmail.com>2011-05-10 09:50:18 +0200
commit4951f2181a7f2c9c6e04431ff244a6a528dc245a (patch)
tree0c20e14a46d23f3b10705acb9d34122190586a53 /report/report_content.rb
parent81609ef5a360e54f26d92236853ec0121fed0d42 (diff)
fix report created-at date
Diffstat (limited to 'report/report_content.rb')
-rwxr-xr-xreport/report_content.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/report/report_content.rb b/report/report_content.rb
index 36f9955..674bb13 100755
--- a/report/report_content.rb
+++ b/report/report_content.rb
@@ -8,7 +8,7 @@ class Reports::ReportContent
attr_accessor :xml_report, :tmp_files
def initialize(title)
- @xml_report = Reports::XMLReport.new(title, Time.now.strftime("Created at %m.%d.%Y - %H:%M"))
+ @xml_report = Reports::XMLReport.new(title, Time.now.strftime("Created at %d.%m.%Y - %H:%M"))
@tmp_file_count = 0
@current_section = @xml_report.get_root_element
end