kimetrica / django-binary-database-files

A storage system for Django that stores uploaded files in the database.
Other
11 stars 18 forks source link

Management commands incorrect in README #24

Closed remocrevo closed 4 years ago

remocrevo commented 4 years ago

The README shows the management commands starting with "binary_":

python manage.py binary_database_files_load

But when I run "python manage.py" to list all available commands, I see them listed as:

[binary_database_files]
    database_files_cleanup
    database_files_dump
    database_files_load
    database_files_rehash

So it seems like the README should be changed to remove "binary_" from those command names.

Remington