浏览代码

Tweak.

pull/10/merge
Ben Kurtovic 9 年前
父节点
当前提交
2e3b722305
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      tasks/infobox_station.py

+ 3
- 3
tasks/infobox_station.py 查看文件

@@ -117,7 +117,7 @@ class InfoboxStation(Task):
code.replace(prev, prev[:-1])
code.insert_before(tmpl, cats + "\n\n")

def _get_transclusions(self, title):
def _get_transclusions(self, tmpl):
"""
Return a list of mainspace translusions of the given template.
"""
@@ -127,5 +127,5 @@ class InfoboxStation(Task):
WHERE tl_namespace = ? AND tl_title = ? AND tl_from_namespace = ?"""

results = self.site.sql_query(query, (
constants.NS_TEMPLATE, title.replace(" ", "_"), constants.NS_MAIN))
return [title.replace("_", " ") for (title,) in results]
constants.NS_TEMPLATE, tmpl.replace(" ", "_"), constants.NS_MAIN))
return [title.decode("utf8").replace("_", " ") for (title,) in results]

正在加载...
取消
保存