From 9db6de8ff858d3bd3f7321ac03ce83ee8a5e0a7c Mon Sep 17 00:00:00 2001 From: Brendan Simon Date: Sun, 16 Apr 2017 21:14:22 +1000 Subject: [PATCH] Fix typo in Gauge demo. --- demo/Gauge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/Gauge.py b/demo/Gauge.py index 637e4c27..c567bcf1 100644 --- a/demo/Gauge.py +++ b/demo/Gauge.py @@ -15,7 +15,7 @@ class TestPanel(wx.Panel): self.g1 = wx.Gauge(self, -1, 50, (110, 50), (250, -1)) self.g2 = wx.Gauge(self, -1, 75, (110, 95), (250, -1)) - if 'wxMac' not in wx.PlaformInfo: + if 'wxMac' not in wx.PlatformInfo: self.g3 = wx.Gauge(self, -1, 100, (110, 135), (-1, 100), wx.GA_VERTICAL) self.Bind(wx.EVT_TIMER, self.TimerHandler) @@ -33,7 +33,7 @@ class TestPanel(wx.Panel): self.g1.SetValue(self.count) self.g2.Pulse() - if 'wxMac' not in wx.PlaformInfo: + if 'wxMac' not in wx.PlatformInfo: self.g3.Pulse()