* morituri/rip/image.py:
Don't splitext on inputdir; fixes encoding of directories like Sigur Ros - Takk... (which removed a period)
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2010-04-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/rip/image.py:
|
||||
Don't splitext on inputdir; fixes encoding of directories like
|
||||
Sigur Ros - Takk... (which removed a period)
|
||||
|
||||
2010-04-09 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* morituri/image/table.py:
|
||||
|
||||
@@ -67,7 +67,7 @@ class Encode(logcommand.LogCommand):
|
||||
cueImage = image.Image(arg)
|
||||
cueImage.setup(runner)
|
||||
# FIXME: find a decent way to get an album-specific outdir
|
||||
root, ext = os.path.splitext(os.path.basename(indir))
|
||||
root = os.path.basename(indir)
|
||||
outdir = os.path.join(prog.outdir, root)
|
||||
try:
|
||||
os.makedirs(outdir)
|
||||
|
||||
Reference in New Issue
Block a user