scm: bazaar: remove unused scm.revisions ":with_paths => true" option from fetch_changesets method

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10399 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-16 14:15:07 +00:00
parent 53e2eb1867
commit 2058c66d73
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class Repository::Bazaar < Repository
while (identifier_from <= scm_revision)
# loads changesets by batches of 200
identifier_to = [identifier_from + 199, scm_revision].min
revisions = scm.revisions('', identifier_to, identifier_from, :with_paths => true)
revisions = scm.revisions('', identifier_to, identifier_from)
transaction do
revisions.reverse_each do |revision|
changeset = Changeset.create(:repository => self,