mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
12 lines
319 B
Text
12 lines
319 B
Text
--- hash_ring/__init__.py.orig 2012-12-15 01:14:49 UTC
|
|
+++ hash_ring/__init__.py
|
|
@@ -1,6 +1,6 @@
|
|
-from hash_ring import HashRing
|
|
+from .hash_ring import HashRing
|
|
|
|
try:
|
|
- from memcache_ring import MemcacheRing
|
|
-except ImportError, e:
|
|
+ from .memcache_ring import MemcacheRing
|
|
+except ImportError as e:
|
|
pass
|