mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-26 06:56:36 +00:00
Don't return suffixes
This isn't useful. The caller can create a `Path` to get this instead.
This commit is contained in:
parent
02f1d08570
commit
0e18d6d2bf
@ -118,7 +118,7 @@ def directory_and_stem(arg_path):
|
||||
while stem.suffixes and '' != stem.suffix:
|
||||
stem = Path(stem.stem)
|
||||
stem = str(stem)
|
||||
return (filepath.parent, stem, filepath.suffixes,)
|
||||
return (filepath.parent, stem,)
|
||||
|
||||
|
||||
def mkdir_p(arg_path, mode=0o777):
|
||||
|
Loading…
Reference in New Issue
Block a user