Guest User

Function with skippable import

a guest
Jul 6th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def importfail():
  2.     try:
  3.         import blahblahblah
  4.     except ImportError:
  5.         popup('Blah-blah-blah import failed!')
  6.  
  7. importfail()
Advertisement
Add Comment
Please, Sign In to add comment