Skip to content

Commit

Permalink
rename datastore.view to datastore.blueprint
Browse files Browse the repository at this point in the history
  • Loading branch information
smotornyuk committed Sep 19, 2019
1 parent 1193aa6 commit 7587ca2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ckan/cli/datastore.py
Expand Up @@ -11,7 +11,7 @@

import ckanext.datastore as datastore_module
from ckanext.datastore.backend.postgres import identifier
from ckanext.datastore.view import DUMP_FORMATS, dump_to
from ckanext.datastore.blueprint import DUMP_FORMATS, dump_to

log = logging.getLogger(__name__)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ckanext/datastore/commands.py
Expand Up @@ -9,7 +9,7 @@
click_config_option,
)
from ckanext.datastore.backend.postgres import identifier
from ckanext.datastore.view import DUMP_FORMATS, dump_to
from ckanext.datastore.blueprint import DUMP_FORMATS, dump_to

import click

Expand Down
2 changes: 1 addition & 1 deletion ckanext/datastore/plugin.py
Expand Up @@ -19,7 +19,7 @@
DatastoreBackend
)
from ckanext.datastore.backend.postgres import DatastorePostgresqlBackend
import ckanext.datastore.view as view
import ckanext.datastore.blueprint as view

log = logging.getLogger(__name__)
_get_or_bust = logic.get_or_bust
Expand Down

0 comments on commit 7587ca2

Please sign in to comment.