bugfix
This commit is contained in:
parent
bd538edfe9
commit
27052a8f58
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ artworkLayerPrefix = "artwork:"
|
|||
|
||||
def createDirectory( name ):
|
||||
if Path.isfile(name):
|
||||
print "WARNING: moving %s to %s.bak because it's in the way." % name
|
||||
print "WARNING: moving %s to %s.bak because it's in the way." % (name,name)
|
||||
bak_name = name + ".bak"
|
||||
if Path.isfile(bak_name):
|
||||
os.remove(bak_name)
|
||||
|
|
|
|||
Loading…
Reference in a new issue