This commit is contained in:
Elizabeth Fischer 2016-06-30 09:19:57 -04:00
parent 50ac98bc04
commit 6327877a6f

View File

@ -176,8 +176,10 @@
# TODO: it's not clear where all the stuff that needs to be included in packages # TODO: it's not clear where all the stuff that needs to be included in packages
# should live. This file is overloaded for spack core vs. for packages. # should live. This file is overloaded for spack core vs. for packages.
# #
__all__ = ['Package', 'StagedPackage', 'CMakePackage', 'Version', 'when', 'ver'] __all__ = ['Package', 'StagedPackage', 'CMakePackage', \
from spack.package import Package, StagedPackage, CMakePackage, ExtensionConflictError 'Version', 'when', 'ver']
from spack.package import Package, ExtensionConflictError
from spack.package import StagedPackage, CMakePackage
from spack.version import Version, ver from spack.version import Version, ver
from spack.multimethod import when from spack.multimethod import when