mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix typo
This commit is contained in:
parent
8f8cdbaa88
commit
47976c81be
1 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,8 @@ class ClientInfo():
|
|||
try:
|
||||
GUID = open(GUID_file)
|
||||
|
||||
except IOError: # machine_guid does not exists.
|
||||
except Exception as e: # machine_guid does not exists.
|
||||
self.logMsg("Generating a new deviceid: %s" % e, 1)
|
||||
clientId = str("%012X" % uuid4())
|
||||
GUID = open(GUID_file, 'w')
|
||||
GUID.write(clientId)
|
||||
|
|
Loading…
Reference in a new issue