Skip to content

Commit

Permalink
Add "branch" to database does not exist error message (#7022)
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan committed Mar 8, 2024
1 parent df6a91a commit 4bcdd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edb/server/dbview/dbview.pyx
Expand Up @@ -1328,7 +1328,7 @@ cdef class DatabaseIndex:
return self._dbs[dbname]
except KeyError:
raise errors.UnknownDatabaseError(
f'database {dbname!r} does not exist')
f'database branch {dbname!r} does not exist')

def maybe_get_db(self, dbname):
return self._dbs.get(dbname)
Expand Down

0 comments on commit 4bcdd8c

Please sign in to comment.