PacktPublishing / Mastering-Python-Design-Patterns-Second-Edition

Mastering-Python-Design-Patterns-Second-Edition, published by Packt
MIT License
404 stars 217 forks source link

Error in chapter15/populate_db.py #6

Open yehuihe opened 2 years ago

yehuihe commented 2 years ago

chapter15/populate_db.py

In both setup_db and add_quotes. db = sqlite3.connect('data/quotes.sqlite3') can't declared inside try/except statement. Doing so will raise

UnboundLocalError: local variable 'db' referenced before assignment

pull db declaration outside try