summaryrefslogtreecommitdiffstats
path: root/cobbler
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-07-21 16:13:49 -0400
committerJim Meyering <jim@meyering.net>2006-07-21 16:13:49 -0400
commitc5f1939527a355e6e1b265e48e4399ab0b2dfe69 (patch)
treed764323dbfb8ea1bc8908d40bd27b23800407906 /cobbler
parent2a3d6a65b0e43e3dbdfc14600d598350dc352c79 (diff)
downloadthird_party-cobbler-c5f1939527a355e6e1b265e48e4399ab0b2dfe69.tar.gz
third_party-cobbler-c5f1939527a355e6e1b265e48e4399ab0b2dfe69.tar.xz
third_party-cobbler-c5f1939527a355e6e1b265e48e4399ab0b2dfe69.zip
Cobbler imports syck. Don't do that.
Diffstat (limited to 'cobbler')
-rwxr-xr-xcobbler/cobbler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/cobbler/cobbler.py b/cobbler/cobbler.py
index 9949882..43ba8e0 100755
--- a/cobbler/cobbler.py
+++ b/cobbler/cobbler.py
@@ -16,7 +16,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import sys
import api
-import syck
import cobbler_msg
import cexceptions
@@ -263,9 +262,6 @@ def main():
CLI entry point
"""
try:
- # verify syck isn't busted (old syck bindings were)
- if not hasattr(syck,"dump"):
- raise cexceptions.CobblerException("PySyck module is outdated")
BootCLI(sys.argv).run()
except cexceptions.CobblerException, exc:
print str(exc)[1:-1] # remove framing air quotes