]> git.phdru.name Git - bookmarks_db.git/blobdiff - bkmk_parser.py
Style: Fix flake8 E128 continuation line under-indented for visual indent
[bookmarks_db.git] / bkmk_parser.py
index 6a69433ddf9ca3286cd3410284435b199c73252c..329b4e52563aaf0edefed9bb84c8b139d166a2d4 100644 (file)
@@ -4,7 +4,7 @@ This file is a part of Bookmarks database and Internet robot.
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 1997-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 1997-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['BkmkParser']
@@ -149,8 +149,8 @@ class BkmkParser(HTMLParser):
 
         debug("Bookmark points to: `%s'" % href)
         bookmark = Bookmark(href, add_date, last_visit, last_modified,
-           keyword=keyword, icon=icon,
-           charset=charset, parser_charset=self.charset or default_encoding)
+                            keyword=keyword, icon=icon, charset=charset,
+                            parser_charset=self.charset or default_encoding)
         self.current_object = bookmark
         self.current_folder.append(bookmark)
         self.urls += 1