Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.LogNull.2.py
2016-05-18 16:38:18 -07:00

9 lines
304 B
Python

# Don't try to load the image if it doesn't exist. This avoids the
# log messages without blocking all the others.
if os.path.exists('bogus.png'):
bmp = wx.Bitmap('bogus.png')
else:
pass
# ... do something else here...