Skip to content

Commit

Permalink
fix "help reference" link
Browse files Browse the repository at this point in the history
  • Loading branch information
mbnshtck committed Feb 7, 2022
1 parent 4c1628e commit 3dec41e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion azure/Kqlmagic/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# (1, 2, 0, 'final', 0) => "1.2"


__version_info__ = (0, 1, 114, "post", 15)
__version_info__ = (0, 1, 114, "post", 16)

assert len(__version_info__) == 5
assert __version_info__[3] in ('dev', 'alpha', 'beta', 'rc', 'final', 'post')
Expand Down
4 changes: 2 additions & 2 deletions azure/Kqlmagic/kql_magic_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .sso_storage import clear_sso_store
from ._version import __version__
from .version import get_pypi_latest_version, is_stable_version, pre_version_label, compare_version, execute_version_command, validate_required_python_version_running
from .help import execute_usage_command, execute_help_command, execute_faq_command, UrlReference, MarkdownString
from .help import execute_usage_command, execute_help_command, execute_faq_command, UrlReference, MarkdownString, _KQL_URL
from .constants import Constants, ConnStrKeys, SsoEnvVarParam, Email
from .dependencies import Dependencies
from .my_utils import adjust_path, adjust_path_to_uri, json_dumps, get_env_var, is_env_var, get_env_var_list, strip_if_quoted, split_if_collection
Expand Down Expand Up @@ -532,7 +532,7 @@ def _add_kql_ref_to_help(self, **options)->None:
add_kql_ref_to_help = options.get("add_kql_ref_to_help")
if add_kql_ref_to_help:
logger().debug("Kqlmagic::__init__ - add kql reference to help menu")
Help_html.add_menu_item("kql Reference", "http://aka.ms/kdocs", **options)
Help_html.add_menu_item("kql Reference", _KQL_URL, **options)


def _show_banner(self, options:Dict[str,Any])->None:
Expand Down
2 changes: 1 addition & 1 deletion binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Kqlmagic==0.1.114.post15
Kqlmagic==0.1.114.post16
ipywidgets>=7.5.1

0 comments on commit 3dec41e

Please sign in to comment.