diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2007-01-12 21:42:21 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2007-01-12 21:42:21 +0000 |
commit | 729d83a9a67795cf285ca8f0177007e1b21e35bc (patch) | |
tree | 274dca3d8dc712e5e88b93e1aae022fad222f0ec /src/lib/Client/Frame.py | |
parent | b8e51369b9722a388a3b624884d83c45bd71c3de (diff) | |
download | bcfg2-729d83a9a67795cf285ca8f0177007e1b21e35bc.tar.gz bcfg2-729d83a9a67795cf285ca8f0177007e1b21e35bc.tar.bz2 bcfg2-729d83a9a67795cf285ca8f0177007e1b21e35bc.zip |
Fix issue reported by mjinks
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2659 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Frame.py')
-rw-r--r-- | src/lib/Client/Frame.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py index 6147e15a6..762be7a10 100644 --- a/src/lib/Client/Frame.py +++ b/src/lib/Client/Frame.py @@ -43,8 +43,8 @@ class Frame: else: tools = Bcfg2.Client.Tools.__all__[:] tmods = {} - tool_class = "Bcfg2.Client.Tools.%s" % tool for tool in tools: + tool_class = "Bcfg2.Client.Tools.%s" % tool try: tmods[tool] = __import__(tool_class, globals(), locals(), ['*']) except ImportError: |