Skip to content

Commit

Permalink
correct pg version check
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 16, 2020
1 parent 2a3a2b2 commit 5e2978f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shapeout2/gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self):

def _check_pg_version(self):
"""Tells the user if the pyqtgraph version is not correct"""
if (not self.settings.get_bool("check pgversion")
if (self.settings.get_bool("check pgversion")
and pg.__version__ != "0.11.0.dev0+g1c63ae5"):
msg = QtWidgets.QMessageBox()
msg.setIcon(QtWidgets.QMessageBox.Warning)
Expand Down

0 comments on commit 5e2978f

Please sign in to comment.