From be2265b0e811d0ac2875c2f748125c17b0f9289e Mon Sep 17 00:00:00 2001 From: Adrien Di Pasquale Date: Sat, 22 Feb 2020 03:32:17 +0100 Subject: [PATCH] Fix db-to-sqlite command in ecosystem doc page (#669) Thanks, @adipasquale --- docs/ecosystem.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ecosystem.rst b/docs/ecosystem.rst index e68912b6..f921c13d 100644 --- a/docs/ecosystem.rst +++ b/docs/ecosystem.rst @@ -32,7 +32,7 @@ db-to-sqlite You can mirror an entire database (including copying foreign key relationships) with the ``--all`` option:: - $ db-to-sqlite --connection="postgresql://simonw@localhost/myblog" --all blog.db + $ db-to-sqlite --all "postgresql://simonw@localhost/myblog" blog.db dbf-to-sqlite -------------