zun/zun/__init__.py
Kien Nguyen 09edc1247b Use __future__ module absolute_import
Purpose: To prevent future divergence of py2 and py3 behavior.
Note: Change automatically generated by modernize tool - recommended
package [1][2].

[1] https://docs.python.org/3/howto/pyporting.html
[2] https://python-modernize.readthedocs.io/en/latest/

Change-Id: Ic1a158c322ab4e92275923554d96e0deca7894e0
Partial implements blueprint support-python-35
2017-07-07 10:34:28 +07:00

21 lines
698 B
Python

# -*- coding: utf-8 -*-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from __future__ import absolute_import
import pbr.version
__version__ = pbr.version.VersionInfo(
'zun').version_string()