diff --git a/buku b/buku
index 500ccbe..adb1089 100755
--- a/buku
+++ b/buku
@@ -2812,7 +2812,7 @@ def convert_bookmark_set(
out += ('
' + row[2] + '\n'
+ out += '>' + row[2] if row[2] else '' + '\n'
if row[4] != '':
out += ' ' + row[4] + '\n'
count += 1
diff --git a/tests/test_buku.py b/tests/test_buku.py
index b77e7df..be6d327 100644
--- a/tests/test_buku.py
+++ b/tests/test_buku.py
@@ -750,6 +750,7 @@ def test_convert_bookmark_set(export_type, exp_res, monkeypatch):
import buku
bms = [
(1, 'htttp://example.com', '', ',', '', 0),
+ (1, 'htttp://example.com', None, ',', '', 0),
(2, 'http://google.com', 'Google', ',', '', 0)]
if export_type == 'random':
with pytest.raises(AssertionError):