Skip to content

Commit

Permalink
Fix/docs links (#13186)
Browse files Browse the repository at this point in the history
* wip

* wip
  • Loading branch information
memsharded authored Feb 22, 2023
1 parent 843a4d8 commit e4ad406
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Decentralized, open-source (MIT), C/C++ package manager.

- Homepage: https://conan.io/
- Github: https://github.com/conan-io/conan
- Docs: https://docs.conan.io/en/latest/
- Docs: https://docs.conan.io
- Slack: https://cpplang.slack.com (#conan channel)
- Twitter: https://twitter.com/conan_io

Expand Down
2 changes: 1 addition & 1 deletion conans/client/graph/install_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,5 +290,5 @@ def _raise_missing(missing):
Check the available packages using 'conan list {ref}:* -r=remote'
or try to build locally from sources using the '{build_str}' argument
More Info at 'https://docs.conan.io/en/2/knowledge/faq.html#error-missing-prebuilt-package'
More Info at 'https://docs.conan.io/2/knowledge/faq.html#error-missing-prebuilt-package'
'''))
2 changes: 1 addition & 1 deletion conans/model/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def bad_value_msg(name, value, value_range):
return ("Invalid setting '%s' is not a valid '%s' value.\nPossible values are %s\n"
'Read "http://docs.conan.io/en/latest/faq/troubleshooting.html#error-invalid-setting"'
'Read "http://docs.conan.io/2/knowledge/faq.html#error-invalid-setting"'
# value range can be either a list or a dict, we only want to list the keys
% (value, name, [v for v in value_range if v is not None]))

Expand Down
2 changes: 1 addition & 1 deletion conans/pylint_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ConanDeprecatedImportsChecker(BaseChecker):
name = "conan_deprecated_imports"
msgs = {
"E9000": (
"Using deprecated imports from 'conans'. Check migration guide at https://docs.conan.io/en/latest/conan_v2.html",
"Using deprecated imports from 'conans'. Check migration guide at https://docs.conan.io/1/conan_v2.html",
"conan1.x-deprecated-imports",
(
"Use imports from 'conan' instead of 'conans'"
Expand Down

0 comments on commit e4ad406

Please sign in to comment.