Django學習筆記-Django1.11 python manage.py migrate執行出錯


學習python編程 從入門到實踐第18章時,創建數據庫失敗

 python manage.py migrate 執行失敗,報錯:

'%s=%s' % (k, v) for k, v in params.items(),

SyntaxError: Generator expression must be parenthesized

解決方法:

找到widgets.py文件,使用vim編輯器打開

修改

'%s=%s' % (k, v) for k, v in params.items(), 

為:

'%s=%s' % (k, v) for k, v in params.items()

然后再次執行 python manage.py migrate 即成功

System check identified no issues (0 silenced).
(ll_env) [wangq@localhost Django]$ python3 manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying sessions.0001_initial... OK

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM