diff options
| -rwxr-xr-x | cli/export-opml-for-user.php | 2 | ||||
| -rwxr-xr-x | cli/export-zip-for-user.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/export-opml-for-user.php b/cli/export-opml-for-user.php index bce4efd63..95b12281f 100755 --- a/cli/export-opml-for-user.php +++ b/cli/export-opml-for-user.php @@ -7,7 +7,7 @@ $options = getopt('', array( )); if (empty($options['user'])) { - fail('Usage: ' . basename(__FILE__) . " --user username > /path/to/file.opml.xml'"); + fail('Usage: ' . basename(__FILE__) . " --user username > /path/to/file.opml.xml"); } $username = cliInitUser($options['user']); diff --git a/cli/export-zip-for-user.php b/cli/export-zip-for-user.php index f8d24238b..3004569cc 100755 --- a/cli/export-zip-for-user.php +++ b/cli/export-zip-for-user.php @@ -8,7 +8,7 @@ $options = getopt('', array( )); if (empty($options['user'])) { - fail('Usage: ' . basename(__FILE__) . " --user username --max-feed-entries 100 > /path/to/file.zip'"); + fail('Usage: ' . basename(__FILE__) . " --user username --max-feed-entries 100 > /path/to/file.zip"); } $username = cliInitUser($options['user']); |
