]> git.decadent.org.uk Git - dak.git/commitdiff
syck -> yaml
authorJoerg Jaspert <joerg@debian.org>
Sat, 28 Feb 2009 11:21:47 +0000 (12:21 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 28 Feb 2009 11:21:47 +0000 (12:21 +0100)
remove the syck module, use yaml instead

Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/extensions.py

index 0bb51bd7e8d6281f776a578efb0a95c1fd3b4796..83ae307626ebc65fa34b78ab107046b0273d557b 100644 (file)
@@ -2,7 +2,7 @@ import sys, os, textwrap
 
 import apt_pkg
 import daklib.utils, daklib.database
-import syck
+import yaml
 
 import daklib.extensions
 from daklib.extensions import replace_dak_function
@@ -30,8 +30,8 @@ def check_transition():
     sourcefile = file(transpath, 'r')
     sourcecontent = sourcefile.read()
     try:
-        transitions = syck.load(sourcecontent)
-    except syck.error, msg:
+        transitions = yaml.load(sourcecontent)
+    except yaml.YAMLError, msg:
         # This shouldn't happen, there is a wrapper to edit the file which
         # checks it, but we prefer to be safe than ending up rejecting
         # everything.