summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Fenn <fennm@deshawresearch.com>2014-09-10 12:38:54 -0400
committerMichael Fenn <fennm@deshawresearch.com>2014-09-10 12:38:54 -0400
commit9ffc3559ab4040fe8a02269db7ff94f8e9849af5 (patch)
treea91cc03ef5746d8a7701b8e96605deec3b8e5418
parent788ac2be910d0cef1c888c31e9465a26f4e45090 (diff)
downloadbcfg2-9ffc3559ab4040fe8a02269db7ff94f8e9849af5.tar.gz
bcfg2-9ffc3559ab4040fe8a02269db7ff94f8e9849af5.tar.bz2
bcfg2-9ffc3559ab4040fe8a02269db7ff94f8e9849af5.zip
use Bcfg2.Compat to get any()
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Probes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Probes.py b/src/lib/Bcfg2/Server/Plugins/Probes.py
index 48be1ac26..5d846b4bb 100644
--- a/src/lib/Bcfg2/Server/Plugins/Probes.py
+++ b/src/lib/Bcfg2/Server/Plugins/Probes.py
@@ -9,7 +9,7 @@ import operator
import lxml.etree
import Bcfg2.Server
import Bcfg2.Server.Plugin
-from Bcfg2.Compat import unicode # pylint: disable=W0622
+from Bcfg2.Compat import any, unicode # pylint: disable=W0622
try:
from django.db import models