aboutsummaryrefslogtreecommitdiffstats
path: root/app/exporters
diff options
context:
space:
mode:
authorZakaria BOUZIANE2015-03-03 09:39:06 +0100
committerZakaria BOUZIANE2015-03-03 09:39:06 +0100
commit9d6a2b8cd12bf134c8fda7256ab3e98d6f55bd23 (patch)
tree935a3afc1fd56a28a7852a93bc2b90e4a34dbdc7 /app/exporters
parentb55347596bf7f385c577ce0e28baa755030c4887 (diff)
downloadchouette-core-9d6a2b8cd12bf134c8fda7256ab3e98d6f55bd23.tar.bz2
Footnotes HUB export : semi-colons not comma as HUB format separator
Diffstat (limited to 'app/exporters')
-rw-r--r--app/exporters/chouette/hub/vehicle_journey_exporter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/exporters/chouette/hub/vehicle_journey_exporter.rb b/app/exporters/chouette/hub/vehicle_journey_exporter.rb
index 8edd2a62c..34e43091d 100644
--- a/app/exporters/chouette/hub/vehicle_journey_exporter.rb
+++ b/app/exporters/chouette/hub/vehicle_journey_exporter.rb
@@ -57,7 +57,7 @@ class Chouette::Hub::VehicleJourneyExporter
end
File.open(directory + "/RENVOI.TXT" , "a:Windows_1252") do |f|
f.write("RENVOI\u000D\u000A") if f.size == 0
- f.write("#{footnote.code},#{footnote.label},#{@number}\u000D\u000A")
+ f.write("#{footnote.code};#{footnote.label};#{@number}\u000D\u000A")
end
end
end