diff options
| author | jc0b <j@jc0b.computer> | 2020-06-30 18:02:16 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:44:37 +0200 |
| commit | b97d1977d08760b237c645a275be1972a32451b7 (patch) | |
| tree | 55cfdd69a8237411558a3045c9342a014de607f1 /web-server/opendc/util/database.py | |
| parent | 6a4703517e7e1ca5ee2c8d8e0a4c49f32d17c662 (diff) | |
| parent | abb91a93c40ef3577aa953cf6e8c252593e082d4 (diff) | |
Merge branch 'feature/mongodb-migration' of github.com:atlarge-research/opendc-dev into feature/mongodb-migration
Diffstat (limited to 'web-server/opendc/util/database.py')
| -rw-r--r-- | web-server/opendc/util/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-server/opendc/util/database.py b/web-server/opendc/util/database.py index 12d6afc9..0402c2e1 100644 --- a/web-server/opendc/util/database.py +++ b/web-server/opendc/util/database.py @@ -14,7 +14,7 @@ class Database: def __init__(self): self.opendc_db = None - def init_database(self, user, password, database, host): + def initialize_database(self, user, password, database, host): """Initializes the database connection.""" user = urllib.parse.quote_plus(user) |
