2 次代碼提交 ff3e288d67 ... 2844ec0dfe

作者 SHA1 備註 提交日期
  Chris Lee 2844ec0dfe Rework the logic for looking up disc key 1 年之前
  Chris Lee ff3e288d67 Rework the logic for looking up disc key 1 年之前
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      libray/core.py

+ 1 - 1
libray/core.py

@@ -177,7 +177,7 @@ def serial_country(title):
     return 'Japan'
   if title[2] == 'K':
     return 'Korea'
-  if title[2] == 'U':
+  if title[2] == 'U' or title[2] == 'T':
     return 'USA'
 
   raise ValueError('Unknown country?!')