diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-03-19 16:44:34 +0200 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-05-08 20:33:14 +0300 |
commit | 7f342c72f64594775bac1bcce81b32ae9e18e6ac (patch) | |
tree | 4e4c1e7657bdb3d7d83b23c60143632e5a02945e /mediagoblin/storage/__init__.py | |
parent | 74e77c36888b9fbec7e4f8f2b0f1d0e0487ed6b4 (diff) | |
download | mediagoblin-7f342c72f64594775bac1bcce81b32ae9e18e6ac.tar.lz mediagoblin-7f342c72f64594775bac1bcce81b32ae9e18e6ac.tar.xz mediagoblin-7f342c72f64594775bac1bcce81b32ae9e18e6ac.zip |
Continue to port GMG codebase.
Diffstat (limited to 'mediagoblin/storage/__init__.py')
-rw-r--r-- | mediagoblin/storage/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mediagoblin/storage/__init__.py b/mediagoblin/storage/__init__.py index 51b46c07..3aa1f4a4 100644 --- a/mediagoblin/storage/__init__.py +++ b/mediagoblin/storage/__init__.py @@ -14,6 +14,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +from __future__ import absolute_import + import shutil import uuid @@ -268,4 +270,4 @@ def storage_system_from_config(config_section): storage_class = common.import_component(storage_class) return storage_class(**config_params) -import filestorage +from . import filestorage |