diff options
Diffstat (limited to 'pysite')
| -rw-r--r-- | pysite/database.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pysite/database.py b/pysite/database.py index f53b9e60..015eeb13 100644 --- a/pysite/database.py +++ b/pysite/database.py @@ -41,7 +41,7 @@ class RethinkDB:      def create_tables(self) -> int:          created = 0 -        for table, primary_key in ALL_TABLES.values(): +        for table, primary_key in ALL_TABLES.items():              if self.create_table(table, primary_key):                  created += 1 | 
