diff options
| author | Todd Willey <todd@ansolabs.com> | 2011-01-06 13:17:28 -0500 |
|---|---|---|
| committer | Todd Willey <todd@ansolabs.com> | 2011-01-06 13:17:28 -0500 |
| commit | 787631f7b3d882b6743ed52dc948301fdbca471e (patch) | |
| tree | 1c08ff71cfe48dda24476c779a0a3e15b03a5cd5 /nova | |
| parent | bccec6c8bac90517a972a5eb8bb91a82b3a13065 (diff) | |
| download | nova-787631f7b3d882b6743ed52dc948301fdbca471e.tar.gz nova-787631f7b3d882b6743ed52dc948301fdbca471e.tar.xz nova-787631f7b3d882b6743ed52dc948301fdbca471e.zip | |
Add blank __init__ file for fixing importability. The stale .pyc masked this error locally.
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/__init__.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/nova/api/__init__.py b/nova/api/__init__.py new file mode 100644 index 000000000..0fedbbfad --- /dev/null +++ b/nova/api/__init__.py @@ -0,0 +1,19 @@ +# vim: tabstop=4 shiftwidth=4 softtabstop=4 + +# Copyright 2010 United States Government as represented by the +# Administrator of the National Aeronautics and Space Administration. +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +"""No-op __init__ for directory full of api goodies.""" |
