zt-devops-cli 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/PKG-INFO +1 -1
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/pyproject.toml +1 -1
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli/cli.py +6 -1
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/PKG-INFO +1 -1
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/README.md +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/setup.cfg +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli/__init__.py +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli/api.py +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli/auth.py +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli/config.py +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/SOURCES.txt +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/dependency_links.txt +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/entry_points.txt +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/requires.txt +0 -0
- {zt_devops_cli-0.2.1 → zt_devops_cli-0.2.2}/src/zt_devops_cli.egg-info/top_level.txt +0 -0
|
@@ -190,7 +190,12 @@ def create_sprint(ctx, project, title, start_date, end_date, purpose, test_start
|
|
|
190
190
|
test_start_date=test_start,
|
|
191
191
|
test_end_date=test_end,
|
|
192
192
|
)
|
|
193
|
-
|
|
193
|
+
|
|
194
|
+
if result.get("0") == "0":
|
|
195
|
+
click.echo(f"创建成功! 迭代 ID: {result.get('id')}")
|
|
196
|
+
else:
|
|
197
|
+
click.echo(f"错误: {result.get('message')}", err=True)
|
|
198
|
+
|
|
194
199
|
except Exception as e:
|
|
195
200
|
click.echo(f"错误: {e}", err=True)
|
|
196
201
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|