Switched some relative imports to be absolute

Implicit relative imports don't work on Python3, and are also prone to
several different classes of errors.

Change-Id: I7b62e9bfbe9c0b1fc9876413e3139fda019a4e57
This commit is contained in:
Alex Gaynor 2013-09-13 10:36:54 -07:00
parent cb114e5ecf
commit 5026e45691
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from ring import RingData, Ring
from builder import RingBuilder
from swift.common.ring.ring import RingData, Ring
from swift.common.ring.builder import RingBuilder
__all__ = [
'RingData',