2 Revīzijas ff3e288d67 ... 2844ec0dfe

Autors SHA1 Ziņojums Datums
  Chris Lee 2844ec0dfe Rework the logic for looking up disc key 1 gadu atpakaļ
  Chris Lee ff3e288d67 Rework the logic for looking up disc key 1 gadu atpakaļ
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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?!')