diff options
Diffstat (limited to 'wqflask/wqflask/collect.py')
-rw-r--r-- | wqflask/wqflask/collect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/collect.py b/wqflask/wqflask/collect.py index fa6e03b4..b22e0004 100644 --- a/wqflask/wqflask/collect.py +++ b/wqflask/wqflask/collect.py @@ -108,7 +108,7 @@ def collections_new(): if 'existing_collection' not in params: collections = g.user_session.user_collections for collection in collections: - if collection["name"] == "Default Collection": + if collection["name"] == "Your Default Collection": collection_id = collection["id"] collection_name = collection["name"] default_collection_exists = True @@ -185,7 +185,7 @@ def delete_collection(): if len(uc_id.split(":")) > 1: flash("We've deleted the selected collections.", "alert-info") else: - flash("We've deleted the collection: {}.".format(uc_id), "alert-info") + flash("We've deleted the selected collection.", "alert-info") else: flash("We've deleted the collection: {}.".format(collection_name), "alert-info") |