##// END OF EJS Templates
scm: bazaar: remove unused scm.revisions ":with_paths => true" option from fetch_changesets method...
Toshi MARUYAMA -
r10216:2058c66d734c
parent child
Show More
@@ -80,7 +80,7 class Repository::Bazaar < Repository
80 while (identifier_from <= scm_revision)
80 while (identifier_from <= scm_revision)
81 # loads changesets by batches of 200
81 # loads changesets by batches of 200
82 identifier_to = [identifier_from + 199, scm_revision].min
82 identifier_to = [identifier_from + 199, scm_revision].min
83 revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true)
83 revisions = scm.revisions('', identifier_to, identifier_from)
84 transaction do
84 transaction do
85 revisions.reverse_each do |revision|
85 revisions.reverse_each do |revision|
86 changeset = Changeset.create(:repository => self,
86 changeset = Changeset.create(:repository => self,
General Comments 0
You need to be logged in to leave comments. Login now