summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-07-31 09:50:19 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-07-31 09:50:19 -0400
commit838fbf56829cd15182e73e3820a453037afbea38 (patch)
treec548106547b2f3fe5d75b871b2fba01a0bf96e06 /src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
parent111193ef96adb711b1b1b4859291c77197eb8ea8 (diff)
downloadbcfg2-838fbf56829cd15182e73e3820a453037afbea38.tar.gz
bcfg2-838fbf56829cd15182e73e3820a453037afbea38.tar.bz2
bcfg2-838fbf56829cd15182e73e3820a453037afbea38.zip
py3k fix: UserDict -> MutableMapping
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Packages/Yum.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Packages/Yum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py b/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
index 0e3c54ad8..779614dbb 100644
--- a/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
+++ b/src/lib/Bcfg2/Server/Plugins/Packages/Yum.py
@@ -8,10 +8,10 @@ import socket
import logging
import threading
import lxml.etree
-from UserDict import DictMixin
from subprocess import Popen, PIPE, STDOUT
import Bcfg2.Server.Plugin
-from Bcfg2.Bcfg2Py3k import StringIO, cPickle, HTTPError, URLError, ConfigParser, file
+from Bcfg2.Bcfg2Py3k import StringIO, cPickle, HTTPError, URLError, \
+ ConfigParser, file
from Bcfg2.Server.Plugins.Packages.Collection import Collection
from Bcfg2.Server.Plugins.Packages.Source import SourceInitError, Source, \
fetch_url