Skip to content

Commit

Permalink
Update manager.py (#85)
Browse files Browse the repository at this point in the history
Fix spelling: 'Not depots have been configured!' -> 'No depots have been configured!'
  • Loading branch information
redjax committed Feb 15, 2024
1 parent 3d3948f commit 192abd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions depot/manager.py
Expand Up @@ -32,7 +32,7 @@ def set_default(cls, name):
def get_default(cls):
"""Retrieves the current application default depot"""
if cls._default_depot is None:
raise RuntimeError('Not depots have been configured!')
raise RuntimeError('No depots have been configured!')
return cls._default_depot

@classmethod
Expand Down Expand Up @@ -175,4 +175,4 @@ def _clear(cls):
get_depot = DepotManager.get
get_file = DepotManager.get_file
configure = DepotManager.configure
set_default = DepotManager.set_default
set_default = DepotManager.set_default

0 comments on commit 192abd8

Please sign in to comment.