Skip to content

Commit

Permalink
fix process_board.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andreika-git committed Dec 8, 2022
1 parent f848ce2 commit 96943e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/process_board.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def print_module(name, prefixPath, moduleName, fileName, isBoard, isBottom):
"*Keepout=%(prefix)s.GKO",
"Drills=%(prefix)s.DRL",
"drillspth=%(prefix)s.DRL"])
if ((os.path.isfile(prefix + ".GBP")):
if (os.path.isfile(prefix + ".GBP")):
write_lines(file, "*" + bottom + "SolderPasteMask=%(prefix)s.GBP")
if ((os.path.isfile(prefix + ".G1") and os.path.isfile(prefix + ".G2")) or isBoard == 1):
write_lines(file, [
Expand Down

0 comments on commit 96943e8

Please sign in to comment.