You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ariatosca.apache.org by tliron <gi...@git.apache.org> on 2017/11/02 18:28:09 UTC

[GitHub] incubator-ariatosca pull request #199: ARIA-392 Failing to load ruamel.yaml

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

    https://github.com/apache/incubator-ariatosca/pull/199#discussion_r148620801
  
    --- Diff: aria/__init__.py ---
    @@ -17,14 +17,45 @@
     The ARIA root package provides entry points for extension and storage initialization.
     """
     
    +import os
     import sys
    +import types
     
     from pkgutil import iter_modules
     import pkg_resources
    -
     aria_package_name = 'apache-ariatosca'
     __version__ = pkg_resources.get_distribution(aria_package_name).version
     
    +
    +
    +
    +try:
    +    import ruamel                                           # noqa: F401
    --- End diff --
    
    I think we've decided to remove IDE-specific comments.


---