You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@climate.apache.org by prateekiiest <gi...@git.apache.org> on 2018/07/03 04:18:14 UTC

[GitHub] climate pull request #516: CLIMATE-958 Disable Pydap for Python 2 build, act...

Github user prateekiiest commented on a diff in the pull request:

    https://github.com/apache/climate/pull/516#discussion_r199679510
  
    --- Diff: ocw/tests/test_dap.py ---
    @@ -17,11 +17,14 @@
     
     import unittest
     import datetime as dt
    -import ocw.data_source.dap as dap
    +try:
    +    import ocw.data_source.dap as dap
    +except ImportError:
    --- End diff --
    
    looks good @lewismc 🎆
    This will probably solve the problem


---