diff options
author | cira0100 <40918547+cira0100@users.noreply.github.com> | 2020-05-18 02:47:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 02:47:00 +0200 |
commit | 4d57307b4021ce99f574608fd3e6689faa239a44 (patch) | |
tree | 0f19264d03c314a316afbf910053eaf60c715e0b | |
parent | 9b9587fd61dab9951f76824b54b07cb6f04b72e8 (diff) |
Update OsuSongParser.py
-rw-r--r-- | OsuSongParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OsuSongParser.py b/OsuSongParser.py index 7e38a9c..f5da922 100644 --- a/OsuSongParser.py +++ b/OsuSongParser.py @@ -17,7 +17,7 @@ for filename in os.listdir(s): for name in os.listdir(path): if(regexMp3.search(name)): shutil.copy(os.path.join(path,name),cwd) - os.rename(os.path.join(cwd,name),os.path.join(cwd,songName)) + os.rename(os.path.join(cwd,name),os.path.join(cwd,songName,".mp3")) break print("Done") |