]> git.decadent.org.uk Git - dak.git/blobdiff - config/debian/extensions.py
syck -> yaml
[dak.git] / 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.