summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Options/Subcommands.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-08-12 13:06:25 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-08-12 13:06:25 -0400
commitcc087724beed1f6fb1b57033d3d8415368be48be (patch)
tree0762c2f8ad706a3d48c19de7d9976f4d7f6b6206 /src/lib/Bcfg2/Options/Subcommands.py
parentfdf47ccf128645bd099f7da80487320e086d17fe (diff)
downloadbcfg2-cc087724beed1f6fb1b57033d3d8415368be48be.tar.gz
bcfg2-cc087724beed1f6fb1b57033d3d8415368be48be.tar.bz2
bcfg2-cc087724beed1f6fb1b57033d3d8415368be48be.zip
Options: Replace relative imports with absolute
Diffstat (limited to 'src/lib/Bcfg2/Options/Subcommands.py')
-rw-r--r--src/lib/Bcfg2/Options/Subcommands.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/Bcfg2/Options/Subcommands.py b/src/lib/Bcfg2/Options/Subcommands.py
index 7d7a3f928..660bd5077 100644
--- a/src/lib/Bcfg2/Options/Subcommands.py
+++ b/src/lib/Bcfg2/Options/Subcommands.py
@@ -8,11 +8,9 @@ import copy
import shlex
import logging
from Bcfg2.Compat import StringIO
-# pylint: disable=W0403
-from OptionGroups import Subparser
-from Options import PositionalArgument
-from Parser import Parser, setup as master_setup
-# pylint: enable=W0403
+from Bcfg2.Options import PositionalArgument
+from Bcfg2.Options.OptionGroups import Subparser
+from Bcfg2.Options.Parser import Parser, setup as master_setup
__all__ = ["Subcommand", "HelpCommand", "CommandRegistry", "register_commands"]