| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Preparatory commit before setup.py introduction.
|
|
|
|
|
|
|
|
|
| |
Add support for extracting image layers in qcow2 format.
Avoid requirement for root privileges by using libguestfs.
- Use "qemu-img" to create backing chain which links the layers.
- Use "virt-format" to format the qcow2 image.
- Use "virt-tar-in" to extract each tar archives in the qcow2 image.
|
|
|
|
|
| |
Store container images downloaded with skopeo to avoid re-download.
Allow user to disable this option by passing "--no-cache" parameter
|
|
|
|
|
| |
Follow PEP8 using pycodestyle
https://pypi.python.org/pypi/pycodestyle/
|
|
|
|
|
|
| |
`OSError: [Errno 17] File exists: ...` error occurs when trying to
create the destination directory specified from the user without
checking if it already exists.
|
|
|
|
|
|
|
|
| |
The unicode flag is passed to `gettext.install` has default value `False` in Python2. [1]
In Python3 this flag does not exists. [2]
[1] https://docs.python.org/2/library/gettext.html#gettext.NullTranslations.install
[2] https://docs.python.org/3.5/library/gettext.html#gettext.NullTranslations.install
|
|
|
|
|
|
|
|
| |
Examine an exception during exception handling in Python3
is done with 'as' instead of comma.
This approach works in Python2 as well.
https://wiki.python.org/moin/HandlingExceptions
|
|
|