Skip to content

Commit 9ee29d0

Browse files
committed
bugfix
1 parent bebf2fb commit 9ee29d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gameyamlspiderandgenerator/plugin/itchio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def to_yaml(self):
171171
"description-format": "markdown",
172172
"authors": self.get_authors(),
173173
"tags": {
174-
"type": self.get_type_tag(),
174+
"type": self.get_type_tags(),
175175
"lang": self.get_langs(),
176176
"platform": self.get_platforms(),
177177
"publish": [".itchio"],
@@ -183,7 +183,7 @@ def to_yaml(self):
183183
}
184184
return YamlData(self._load_hook(ret))
185185

186-
def get_type_tag(self):
186+
def get_type_tags(self):
187187
repl = {
188188
"Visual Novel": "visual-novel",
189189
"Real time strategy": "real-time-strategy",

gameyamlspiderandgenerator/plugin/steam.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def to_yaml(self):
6161
"description-format": "markdown",
6262
"authors": self.get_authors(),
6363
"tags": {
64-
"type": self.get_type_tag(),
64+
"type": self.get_type_tags(),
6565
"lang": self.get_langs(),
6666
"platform": self.get_platforms(),
6767
"publish": ["steam"],
@@ -117,7 +117,7 @@ def get_platforms(self):
117117
repl = {"windows": "windows", "mac": "macos", "linux": "linux"}
118118
return [repl[i] for i in temp if temp[i]]
119119

120-
def get_type_tag(self):
120+
def get_type_tags(self):
121121
repl = {
122122
"Adventure": "adventure",
123123
"Action": "action",

0 commit comments

Comments
 (0)