Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-09-01 03:03:09 +0300
committerStan Hu <stanhu@gmail.com>2015-09-01 18:50:20 +0300
commit2e9c922dd17d13e2cb20b214f00eb875c673dfdf (patch)
tree0c1d2d0e0b1c81da56b15ffa22ae4c624d7a6f50 /lib/gitlab/import_formatter.rb
parent31e4654b1f77ab48e5705f8feb8d628c66d4f962 (diff)
Fix bug where only the first 15 Bitbucket issues would be imported.
Also fix a number of issues where author/reporter names were not available.
Diffstat (limited to 'lib/gitlab/import_formatter.rb')
-rw-r--r--lib/gitlab/import_formatter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/import_formatter.rb b/lib/gitlab/import_formatter.rb
index 72e041a90b1..3e54456e936 100644
--- a/lib/gitlab/import_formatter.rb
+++ b/lib/gitlab/import_formatter.rb
@@ -8,8 +8,8 @@ module Gitlab
"\n\n\n**Imported comments:**\n"
end
- def author_line(author, body)
- "*Created by: #{author}*\n\n#{body}"
+ def author_line(author)
+ "*Created by: #{author}*\n\n"
end
end
end