Skip to content

Commit

Permalink
Fix "FOLDER" column Kaleidoscope compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
sprestrelski committed Mar 30, 2022
1 parent 75cca40 commit d6a1069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyHa/IsoAutio.py
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ def kaleidoscope_conversion(df):
Returns:
Pandas Dataframe compatible with Kaleidoscope.
"""
kaleidoscope_df = [df["FOLDER"], df["IN FILE"], df["CHANNEL"],
kaleidoscope_df = [df["FOLDER"].str.rstrip("/\\"), df["IN FILE"], df["CHANNEL"],
df["OFFSET"], df["DURATION"], df["MANUAL ID"]]
headers = ["FOLDER", "IN FILE", "CHANNEL",
"OFFSET", "DURATION", "MANUAL ID"]
Expand Down

0 comments on commit d6a1069

Please sign in to comment.