From 3d72b2adf30fe2a371e5ccdc3e2c457fa68c4a5d Mon Sep 17 00:00:00 2001 From: hackrush Date: Wed, 26 Sep 2018 19:23:23 +0530 Subject: [PATCH] Review Fixes --- lbrynet/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/cli.py b/lbrynet/cli.py index ea712d992..60c85acf3 100644 --- a/lbrynet/cli.py +++ b/lbrynet/cli.py @@ -148,7 +148,7 @@ def main(argv=None): new_method = Daemon.deprecated_methods[method].new_command if new_method is None: - print("{} is permanently deprecated and will be removed in a future release.".format(method)) + print("{} is permanently deprecated and does not have a replacement command.".format(method)) return 0 print("{} is deprecated, using {}.".format(method, new_method))