summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-09-25 16:47:33 -0700
committerStan Hu <stanhu@gmail.com>2015-09-25 16:47:33 -0700
commit6d6918105941bcb868b59350f56eb2f76efd7cf5 (patch)
treefbd6d7c11d224ba228b33495eaee3cf8ca952236
parent9ee96d45a3f123cba8ceb0b0147530dbeb04440a (diff)
parent4957415e00207e0eae6184237f19bcd7c7401598 (diff)
downloadgitlab-ce-6d6918105941bcb868b59350f56eb2f76efd7cf5.tar.gz
Merge branch 'master' of https://github.com/gitlabhq/gitlabhq
-rw-r--r--lib/gitlab/fogbugz_import/importer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/fogbugz_import/importer.rb b/lib/gitlab/fogbugz_import/importer.rb
index 61e08b23543..496256700b8 100644
--- a/lib/gitlab/fogbugz_import/importer.rb
+++ b/lib/gitlab/fogbugz_import/importer.rb
@@ -154,7 +154,7 @@ module Gitlab
while comment = comments.shift
verb = comment['sVerb']
- next if verb == 'Opened' || verb === 'Closed'
+ next if verb == 'Opened'
content = format_content(comment['s'])
attachments = format_attachments(comment['rgAttachments'])