mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-25 13:57:59 +01:00
fix kms bug
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
42f1b15a5a
commit
d3316e31b6
1 changed files with 8 additions and 6 deletions
|
@ -156,13 +156,15 @@ class KMS():
|
||||||
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __createKMSPony(pony, kmspony, cachedir):
|
def __createKMSPony(pony, kmspony, cachedir, palette, shared):
|
||||||
'''
|
'''
|
||||||
Create KMS pony
|
Create KMS pony
|
||||||
|
|
||||||
@param pony:str Choosen pony file
|
@param pony:str Choosen pony file
|
||||||
@param kmspony:str The KMS pony file
|
@param kmspony:str The KMS pony file
|
||||||
@param cachedir:str The cache directory
|
@param cachedir:str The cache directory
|
||||||
|
@param palette:str The palette
|
||||||
|
@parma shared:str Whether shared cache is used
|
||||||
'''
|
'''
|
||||||
## kmspony directory
|
## kmspony directory
|
||||||
kmsponydir = kmspony[:kmspony.rindex('/')]
|
kmsponydir = kmspony[:kmspony.rindex('/')]
|
||||||
|
@ -216,7 +218,7 @@ class KMS():
|
||||||
palettefile = env_kms.replace('\033]P', '')
|
palettefile = env_kms.replace('\033]P', '')
|
||||||
|
|
||||||
## Get and if necessary make cache directory
|
## Get and if necessary make cache directory
|
||||||
(cachedir, share) = KMS.__getCacheDirectory(home)
|
(cachedir, shared) = KMS.__getCacheDirectory(home)
|
||||||
|
|
||||||
## KMS support version control, clean everything if not matching
|
## KMS support version control, clean everything if not matching
|
||||||
if KMS.__isCacheOld(cachedir):
|
if KMS.__isCacheOld(cachedir):
|
||||||
|
@ -228,7 +230,7 @@ class KMS():
|
||||||
|
|
||||||
## If the kmspony is missing, create it
|
## If the kmspony is missing, create it
|
||||||
if not os.path.isfile(kmspony):
|
if not os.path.isfile(kmspony):
|
||||||
KMS.__createKMSPony(pony, kmspony, cachedir)
|
KMS.__createKMSPony(pony, kmspony, cachedir, palette, shared)
|
||||||
|
|
||||||
return kmspony
|
return kmspony
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue