mirror of
https://github.com/beetbox/beets.git
synced 2025-12-14 20:43:41 +01:00
Tiny docstring tweak for #2390
This commit is contained in:
parent
9564efc87e
commit
dd7f8a3a6f
1 changed files with 5 additions and 3 deletions
|
|
@ -738,9 +738,11 @@ class Database(object):
|
|||
return conn
|
||||
|
||||
def _create_connection(self):
|
||||
"""Create a SQLite connection to the underlying database. Makes
|
||||
a new connection every time. If you need to add custom functions
|
||||
to each connection, override this method.
|
||||
"""Create a SQLite connection to the underlying database.
|
||||
|
||||
Makes a new connection every time. If you need to configure the
|
||||
connection settings (e.g., add custom functions), override this
|
||||
method.
|
||||
"""
|
||||
# Make a new connection. The `sqlite3` module can't use
|
||||
# bytestring paths here on Python 3, so we need to
|
||||
|
|
|
|||
Loading…
Reference in a new issue