summaryrefslogtreecommitdiff
path: root/lib/bitbucket
diff options
context:
space:
mode:
authorValery Sizov <valery@gitlab.com>2016-12-13 17:59:21 +0200
committerValery Sizov <valery@gitlab.com>2016-12-13 17:59:21 +0200
commit0057ed1e69bc203d82fd3e8dfa6db7ea6a9b1de7 (patch)
treec72e7cbab5c1ce826963408afe9b3f6d8290ef89 /lib/bitbucket
parenta2be395401f6320d2722bbd98de0c046d05f0480 (diff)
downloadgitlab-ce-0057ed1e69bc203d82fd3e8dfa6db7ea6a9b1de7.tar.gz
BB importer: Fixed after code review[ci skip]
Diffstat (limited to 'lib/bitbucket')
-rw-r--r--lib/bitbucket/paginator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitbucket/paginator.rb b/lib/bitbucket/paginator.rb
index b38cd99855c..135d0d55674 100644
--- a/lib/bitbucket/paginator.rb
+++ b/lib/bitbucket/paginator.rb
@@ -29,7 +29,7 @@ module Bitbucket
end
def fetch_next_page
- parsed_response = connection.get(next_url, { pagelen: PAGE_LENGTH, sort: :created_on })
+ parsed_response = connection.get(next_url, pagelen: PAGE_LENGTH, sort: :created_on)
Page.new(parsed_response, type)
end
end