Skip to content

Commit 3b7a2d0

Browse files
committed
Corrected small error in tmd.py, GameChannel is the "correct" name
1 parent a85beac commit 3b7a2d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libWiiPy/tmd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def get_title_type(self) -> str:
257257
Gets the type of the TMD's associated title.
258258
259259
Can be one of several possible values:
260-
'System', 'Game', 'Channel', 'SystemChannel', 'GameWithChannel', or 'HiddenChannel'
260+
'System', 'Game', 'Channel', 'SystemChannel', 'GameChannel', or 'HiddenChannel'
261261
262262
Returns
263263
-------
@@ -275,7 +275,7 @@ def get_title_type(self) -> str:
275275
case '00010002':
276276
return "SystemChannel"
277277
case '00010004':
278-
return "GameWithChannel"
278+
return "GameChannel"
279279
case '00010005':
280280
return "DLC"
281281
case '00010008':

0 commit comments

Comments
 (0)