Skip to content

Commit

Permalink
Merge pull request #42 from Patarimi/windows-fix
Browse files Browse the repository at this point in the history
ignore SIGUSR1 on windows
  • Loading branch information
mole99 authored Mar 24, 2024
2 parents 743301a + 8cbe420 commit 3b49915
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cace/cace_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -2053,7 +2053,8 @@ def gui():
else:
arguments.append(item)

signal.signal(signal.SIGUSR1, signal.SIG_IGN)
if os.name != 'nt':
signal.signal(signal.SIGUSR1, signal.SIG_IGN)
root = tkinter.Tk()
app = CACECharacterize(root)

Expand Down

0 comments on commit 3b49915

Please sign in to comment.