]> git.phdru.name Git - bookmarks_db.git/blobdiff - set-title-list.py
Style: Fix flake8 E261 at least two spaces before inline comment
[bookmarks_db.git] / set-title-list.py
index 6a4974238b4ea6b7de2856b30255782c376c7def..be96b53ea608c3d56b243d89c9fc52b3b7d3c08f 100755 (executable)
@@ -9,7 +9,7 @@ import sys
 
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2003-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2003-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 
@@ -28,7 +28,7 @@ def run():
         pass
 
     if report_stats:
-        print("Broytman set-title-list, Copyright (C) 2003-2017 PhiloSoft Design")
+        print("Broytman set-title-list, Copyright (C) 2003-2023 PhiloSoft Design")
 
     if len(args) != 1:
         sys.stderr.write("Usage: set-title-list [-s] title_list_file\n")
@@ -42,17 +42,17 @@ def run():
 
     title_list_file = open(args[0], 'r')
     for line in title_list_file:
-        line = line[:-1] # strip trailing newline
+        line = line[:-1]  # strip trailing newline
         if URL is None:
             URL = line
 
         elif title is None:
             title = line
 
-        elif line: # the third line in every 3 lines must be empty
+        elif line:  # the third line in every 3 lines must be empty
             raise ValueError("line is not empty for URL `%s', title `%s': line `%s'" % (URL, title, line))
 
-        else: # We've got 3 lines - add new entry to the mapping
+        else:  # We've got 3 lines - add new entry to the mapping
             if titles_dict.has_key(URL):
                 if title != titles_dict[URL]:
                     raise ValueError("titles are not identical for URL `%s': `%s' != `%s'" % (URL, title, titles_dict[URL]))