Skip to content

Commit 08eff1e

Browse files
swagatmishra2007williexu
authored andcommitted
fix issue with publishing to bot (Azure#202)
* fix missing client error during publish * update index.json * remove unused client variable
1 parent 1b59aa8 commit 08eff1e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/botservice/azext_bot/custom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def create_app(cmd, client, resource_group_name, resource_name, description, kin
233233
return create_bot_json(cmd, client, resource_group_name, resource_name, app_password=password)
234234

235235

236-
def publish_app(cmd, _, resource_group_name, resource_name, git_url=None, git_token=None, git_branch='master', # pylint: disable=inconsistent-return-statements
236+
def publish_app(cmd, resource_group_name, resource_name, git_url=None, git_token=None, git_branch='master', # pylint: disable=inconsistent-return-statements
237237
code_dir=None):
238238
# if given msbot json, use that to update environment settings like luis settings
239239
if git_url:

src/botservice/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1414
cmdclass = {}
1515

16-
VERSION = "0.0.2"
16+
VERSION = "0.0.3"
1717
# The full list of classifiers is available at
1818
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
1919
CLASSIFIERS = [

src/index.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -884,9 +884,9 @@
884884
],
885885
"botservice": [
886886
{
887-
"filename": "botservice-0.0.2-py2.py3-none-any.whl",
888-
"sha256Digest": "bfacf788883301a7711243287cdd3e38feea50d750bbe8e6b6284a29dfef78f0",
889-
"downloadUrl": "https://icscratch.blob.core.windows.net/bot-packages/botservice-0.0.2-py2.py3-none-any.whl",
887+
"filename": "botservice-0.0.3-py2.py3-none-any.whl",
888+
"sha256Digest": "2bab390922c1ad9b6fa645b651540e7c8de14f20213fd6848a6fa67f0636f699",
889+
"downloadUrl": "https://icscratch.blob.core.windows.net/bot-packages/botservice-0.0.3-py2.py3-none-any.whl",
890890
"metadata": {
891891
"azext.minCliCoreVersion": "2.0.30",
892892
"azext.isPreview": true,
@@ -912,7 +912,7 @@
912912
"metadata_version": "2.0",
913913
"name": "botservice",
914914
"summary": "Support for Azure Bot Service 2017-12-01 preview features",
915-
"version": "0.0.2"
915+
"version": "0.0.3"
916916
}
917917
}
918918
],

0 commit comments

Comments
 (0)