Skip to content

Commit

Permalink
documentation link fix (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhanilBag authored and zmalik committed Jun 7, 2019
1 parent 5fedb8c commit ce24a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/universe/package_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _get_documentation_path(self):
documentation_path = "{}/service-docs/{}/".format(_docs_root, self._package.get_name())
package_version = str(self._package.get_version())
if package_version != "stub-universe":
documentation_path = "{}v{}/".format(documentation_path, package_version)
documentation_path = "{}{}/".format(documentation_path, package_version)

return documentation_path

Expand Down

0 comments on commit ce24a61

Please sign in to comment.