Working state

This commit is contained in:
2026-03-10 14:21:35 +01:00
parent cb7c358a93
commit 95f20eb8b7
5 changed files with 13 additions and 7 deletions
+2 -1
View File
@@ -10,7 +10,7 @@ def main():
sys.exit(1)
work_dir = os.path.abspath(sys.argv[1])
bnot_dir = os.path.abspath(sys.argv[2])
bnot_dir = sys.argv[2]
target_subdir = os.path.join(work_dir, "A Rendre")
os.makedirs(target_subdir, exist_ok=True)
@@ -56,6 +56,7 @@ def main():
# Fallback to Anot
elif (os.path.exists(os.path.join(path_a, "Concat.jpg")) and
os.path.exists(os.path.join(path_a, "score.json"))):
print(f"Debug : couldn't find {path_b} falling back to Anot path")
source_folder = path_a
if not source_folder: