Skip to content

Commit

Permalink
フィルタ条件の指定ミスを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tmatma committed Jul 16, 2018
1 parent 086df3e commit 36aaa77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse-buildlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def converterPython2(value):

# Excel の列にフィルタを設定する
start = openpyxl.utils.get_column_letter(1)
end = openpyxl.utils.get_column_letter(len(excelKeys)+1)
end = openpyxl.utils.get_column_letter(len(excelKeys))
ws.auto_filter.ref = start + ":" + end

# ウィンドウ枠を固定
Expand Down

0 comments on commit 36aaa77

Please sign in to comment.