glpkg 1.4.0__tar.gz → 1.4.1__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.
- {glpkg-1.4.0 → glpkg-1.4.1}/PKG-INFO +1 -1
- {glpkg-1.4.0 → glpkg-1.4.1}/src/gitlab/__init__.py +1 -1
- {glpkg-1.4.0 → glpkg-1.4.1}/src/gitlab/__main__.py +0 -5
- {glpkg-1.4.0 → glpkg-1.4.1}/src/glpkg.egg-info/PKG-INFO +1 -1
- {glpkg-1.4.0 → glpkg-1.4.1}/LICENSE.md +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/README.md +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/pyproject.toml +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/setup.cfg +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/gitlab/cli_handler.py +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/gitlab/packages.py +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/glpkg.egg-info/SOURCES.txt +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/glpkg.egg-info/dependency_links.txt +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/glpkg.egg-info/entry_points.txt +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/src/glpkg.egg-info/top_level.txt +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/test/test_cli_handler.py +0 -0
- {glpkg-1.4.0 → glpkg-1.4.1}/test/test_packages.py +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"""GitLab packages main module"""
|
|
2
2
|
|
|
3
|
-
import logging
|
|
4
3
|
import sys
|
|
5
4
|
|
|
6
5
|
from gitlab.cli_handler import CLIHandler
|
|
@@ -17,10 +16,6 @@ def cli() -> int:
|
|
|
17
16
|
int
|
|
18
17
|
Zero when everything is fine, non-zero otherwise.
|
|
19
18
|
"""
|
|
20
|
-
logging.basicConfig(
|
|
21
|
-
level=logging.DEBUG,
|
|
22
|
-
handlers=[logging.FileHandler("glpkg.log")], # , logging.StreamHandler()],
|
|
23
|
-
)
|
|
24
19
|
handler = CLIHandler()
|
|
25
20
|
return handler.do_it()
|
|
26
21
|
|
|
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
|
|
File without changes
|