|
@@ -10,7 +10,7 @@ Classes:
|
|
|
- frame::TplotFrame
|
|
|
- frame::LookUp
|
|
|
|
|
|
-(C) 2012-2014 by the GRASS Development Team
|
|
|
+(C) 2012-2016 by the GRASS Development Team
|
|
|
|
|
|
This program is free software under the GNU General Public License
|
|
|
(>=v2). Read the file COPYING that comes with GRASS for details.
|
|
@@ -38,9 +38,9 @@ try:
|
|
|
NavigationToolbar2WxAgg as NavigationToolbar
|
|
|
import matplotlib.dates as mdates
|
|
|
from matplotlib import cbook
|
|
|
-except ImportError:
|
|
|
+except ImportError as e:
|
|
|
raise ImportError(_('The Temporal Plot Tool needs the "matplotlib" '
|
|
|
- '(python-matplotlib) package to be installed.'))
|
|
|
+ '(python-matplotlib) package to be installed. {}').format(e))
|
|
|
|
|
|
from core.utils import _
|
|
|
|