don t specify full path in message

This commit is contained in:
GitBluub
2022-12-21 16:07:55 +09:00
parent 499e201179
commit 4fdb825c60

View File

@@ -83,7 +83,7 @@ def main():
print(json.dumps({"error": "Error with the start message"}))
exit()
song_name = start_message["name"]
sc = Scorometer(song_name)
sc = Scorometer(f"partitions/{song_name}.midi")
sc.gameLoop()
if __name__ == "__main__":