Continue to port GMG codebase.

This commit is contained in:
Berker Peksag
2014-03-19 16:44:34 +02:00
parent 74e77c3688
commit 7f342c72f6
9 changed files with 35 additions and 19 deletions

View File

@@ -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

View File

@@ -21,7 +21,8 @@ from mediagoblin.storage import (
import os
import shutil
import urlparse
from mediagoblin._compat import urlparse
class BasicFileStorage(StorageInterface):