浏览代码

Fix the populate script

It was inverting the private field on links
Trevor Elliott 4 年之前
父节点
当前提交
c81a263b56
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      scripts/populate.py

+ 1 - 1
scripts/populate.py

@@ -28,7 +28,7 @@ def main():
             url=l["href"],
             name=l["description"],
             description=l["extended"],
-            private=l["shared"] == "yes",
+            private=l["shared"] == "no",
             tags=l["tags"].split(),
             created=time,
         )