Skip to content

Commit 167992d

Browse files
committed
Change sheet name format when merging excel
1 parent 60eed90 commit 167992d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fosslight_util/write_excel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def merge_excels(find_excel_dir, final_out):
170170
df_excel = pd.read_excel(
171171
file, sheet_name=sheet_name, engine='openpyxl')
172172
df_excel.to_excel(
173-
writer, f_short_name + '_' + sheet_name,
173+
writer, sheet_name + '_' + f_short_name,
174174
index=False)
175175
writer.save()
176176
except Exception as ex:

0 commit comments

Comments
 (0)