You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@climate.apache.org by go...@apache.org on 2013/08/20 19:01:06 UTC

svn commit: r1515880 - in /incubator/climate/trunk/ocw: data_source/local.py tests/test_local.py

Author: goodale
Date: Tue Aug 20 17:01:06 2013
New Revision: 1515880

URL: http://svn.apache.org/r1515880
Log:
CLIMATE-266: Fixed the imports for local.py and test_local.py

Modified:
    incubator/climate/trunk/ocw/data_source/local.py
    incubator/climate/trunk/ocw/tests/test_local.py

Modified: incubator/climate/trunk/ocw/data_source/local.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/ocw/data_source/local.py?rev=1515880&r1=1515879&r2=1515880&view=diff
==============================================================================
--- incubator/climate/trunk/ocw/data_source/local.py (original)
+++ incubator/climate/trunk/ocw/data_source/local.py Tue Aug 20 17:01:06 2013
@@ -17,7 +17,7 @@
 
 import re
 import netCDF4
-from dataset import Dataset
+from ocw.dataset import Dataset
 import numpy
 import numpy.ma as ma
 from datetime import timedelta ,datetime

Modified: incubator/climate/trunk/ocw/tests/test_local.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/ocw/tests/test_local.py?rev=1515880&r1=1515879&r2=1515880&view=diff
==============================================================================
--- incubator/climate/trunk/ocw/tests/test_local.py (original)
+++ incubator/climate/trunk/ocw/tests/test_local.py Tue Aug 20 17:01:06 2013
@@ -21,7 +21,7 @@ import numpy.ma as ma
 import os
 import netCDF4
 import datetime
-from data_source.local import *
+from ocw.data_source.local import *
 
 
 class test_load_file(unittest.TestCase):