view app/models/repository/subversion.rb.rej @ 242:bde4f47b6427 feature_73

Do more-or-less the right thing to pull in and update external repos
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 24 Feb 2011 15:04:51 +0000
parents 1d32c0a0efbf
children
line wrap: on
line source
--- app/models/repository/subversion.rb
+++ app/models/repository/subversion.rb
@@ -63,11 +63,7 @@
                                            :comments => revision.message)
               
               revision.paths.each do |change|
-                Change.create(:changeset => changeset,
-                              :action => change[:action],
-                              :path => change[:path],
-                              :from_path => change[:from_path],
-                              :from_revision => change[:from_revision])
+                changeset.create_change(change)
               end unless changeset.new_record?
             end
           end unless revisions.nil?