Monty Taylor 8b80285da6 Update to latest oslo version/setup.
Change-Id: I7bd38b950ef9fea8b6eaa1df599085a1c64d8b61
2013-01-14 03:29:22 -08:00

18 lines
505 B
Python

# -*- encoding: utf-8 -*-
""""
OpenStack Swift Python client binding.
"""
from client import *
# At setup.py time, we haven't installed anything yet, so there
# is nothing that is able to set this version property. Squelching
# that exception here should be fine- if there are problems with
# pkg_resources in a real install, that will manifest itself as
# an error still
try:
from swiftclient import version
__version__ = version.version_info.cached_version_string()
except Exception:
pass