summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/POSIX/Device.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-23 08:02:59 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-23 08:02:59 -0400
commit54cae6652df66e292eb1a0ff5a3378fe382b2650 (patch)
tree8c29fd4278da8ce0bd39e36747b657971fff0198 /src/lib/Bcfg2/Client/Tools/POSIX/Device.py
parentec0cd6ea9edd655b748e44b5d9d846870c12b8e3 (diff)
downloadbcfg2-54cae6652df66e292eb1a0ff5a3378fe382b2650.tar.gz
bcfg2-54cae6652df66e292eb1a0ff5a3378fe382b2650.tar.bz2
bcfg2-54cae6652df66e292eb1a0ff5a3378fe382b2650.zip
removed relative imports from POSIX tools
Diffstat (limited to 'src/lib/Bcfg2/Client/Tools/POSIX/Device.py')
-rw-r--r--src/lib/Bcfg2/Client/Tools/POSIX/Device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Client/Tools/POSIX/Device.py b/src/lib/Bcfg2/Client/Tools/POSIX/Device.py
index 3ecef2cd7..b8fb0f4d0 100644
--- a/src/lib/Bcfg2/Client/Tools/POSIX/Device.py
+++ b/src/lib/Bcfg2/Client/Tools/POSIX/Device.py
@@ -1,6 +1,6 @@
import os
import sys
-from .base import POSIXTool, device_map
+from base import POSIXTool, device_map
class POSIXDevice(POSIXTool):
__req__ = ['name', 'dev_type', 'perms', 'owner', 'group']