]> git.phdru.name Git - m_librarian.git/blobdiff - scripts/ml-import.py
Feat(glst): Report imported glst counter
[m_librarian.git] / scripts / ml-import.py
index 07c7fbb47e36f69122f81746616380ac737f3f99..bc4b6b39ca7299cd2c17827742422b09812cb14c 100755 (executable)
@@ -26,7 +26,14 @@ if __name__ == '__main__':
 
     open_db(args.database)
     init_db()
-    import_glst()
+
+    count_old, count_new = import_glst()
+    if count_old:
+        print("Imported %d genres (ignored %d existing)" % (
+            count_new, count_old))
+    else:
+        print("Imported %d genres" % count_new)
+
     use_pbar = ttyProgressBar and not args.no_pbar and sys.stdout.isatty()
     for inpx in args.inpx:
         if use_pbar: