Ignore:
Timestamp:
10/20/12 14:39:50 (12 years ago)
Author:
Mathieu Morlighem
Message:

BUG: matplotlib might not have been installed, startup.py should not error out (for NR)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/plotmodel.py

    r13440 r13771  
    1 import pylab as p
     1
     2try:
     3        import pylab as p
     4except ImportError:
     5        print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled"
     6
    27#from pairoptions import *
    38from plotoptions import plotoptions
Note: See TracChangeset for help on using the changeset viewer.