Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: check_order_number function on empty files #555

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,9 +804,13 @@ def select_part(self, *_):

def check_order_number(self):
"""Verify that the JLC order number placeholder is present."""
with open(self.pcbnew.GetBoard().GetFileName()) as f:
data = f.read()
return "JLCJLCJLCJLC" in data
try:
with open(self.pcbnew.GetBoard().GetFileName()) as f:
data = f.read()
return "JLCJLCJLCJLC" in data
except OSError:
pass
return True

def generate_fabrication_data(self, *_):
"""Generate fabrication data."""
Expand Down