Changes between Initial Version and Version 1 of Ticket #32978, comment 9


Ignore:
Timestamp:
Aug 2, 2021, 7:07:42 PM (3 years ago)
Author:
Brad

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32978, comment 9

    initial v1  
    44Old:
    55
    6 ```sh
     6
    77$ ./manage.py dumpdata --format yaml --pks 1 users.User
    88CommandError: Unable to serialize database: No module named 'yaml'
    9 ```
     9
    1010
    1111New:
    1212
    13 ```sh
    1413$ ./manage.py dumpdata --format yaml --pks 1 users.User
    1514CommandError: Unable to serialize database: Error loading yaml module. Did you install PyYAML?
    16 ```
Back to Top