__init__.py (ec2-api-14.0.1) | : | __init__.py (ec2-api-15.0.0) | ||
---|---|---|---|---|
skipping to change at line 24 | skipping to change at line 24 | |||
""" | """ | |||
:mod:`ec2api` -- Cloud IaaS Platform | :mod:`ec2api` -- Cloud IaaS Platform | |||
=================================== | =================================== | |||
.. automodule:: ec2api | .. automodule:: ec2api | |||
:platform: Unix | :platform: Unix | |||
:synopsis: Infrastructure-as-a-Service Cloud platform. | :synopsis: Infrastructure-as-a-Service Cloud platform. | |||
""" | """ | |||
import six | ||||
import gettext | import gettext | |||
if six.PY2: | gettext.install('ec2api') | |||
gettext.install('ec2api', unicode=1) | ||||
else: | ||||
gettext.install('ec2api') | ||||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 0 lines changed or added |