diff --git a/blockstack_client/backend/drivers/_skel.py b/blockstack_client/backend/drivers/_skel.py index c0e872753..50b2de297 100644 --- a/blockstack_client/backend/drivers/_skel.py +++ b/blockstack_client/backend/drivers/_skel.py @@ -107,7 +107,7 @@ determine how to replicate data. is listed here by default since writes to disk are invisible to other clients. In order for `put` to work on mutable data, there must be at least one driver listed in -blockstack-client.storage_drivers_required_write that is NOT listed +blockstack-client.storage_drivers_required_write that is NOT listed in blockstack-client.storage_drivers_local. There are no long-term plans for creating more sophisticated replication strategies. This @@ -219,7 +219,7 @@ import logging from common import * from ConfigParser import SafeConfigParser -log = get_logger("blockstack-storage-skel") +log = get_logger("blockstack-storage-drivers-skel") log.setLevel( logging.DEBUG if DEBUG else logging.INFO ) def storage_init(conf, **kwargs): @@ -471,7 +471,7 @@ def delete_mutable_handler( data_id, tombstone, **kw ): Returns True on successful deletion Returns False on failure. Does not raise an exception. """ - False + return False if __name__ == "__main__": diff --git a/docs/setup_core_portal.md b/docs/setup_core_portal.md index 33f2d3a0e..489ceca1e 100644 --- a/docs/setup_core_portal.md +++ b/docs/setup_core_portal.md @@ -99,7 +99,7 @@ With the following contents: [Desktop Entry] Type=Application Terminal=false -Exec=bash -c 'xdg-open http://localhost:3000/auth?authRequest=$(echo "%u" | sed s/blockstack://)' +Exec=bash -c 'xdg-open http://localhost:3000/auth?authRequest=$(echo "%u" | sed s,blockstack:/*,,)' Name=Blockstack-Portal MimeType=x-scheme-handler/blockstack; ```