]> git.decadent.org.uk Git - dak.git/commitdiff
fix .katie handling
authorJames Troup <james@nocrew.org>
Wed, 8 May 2002 11:08:45 +0000 (11:08 +0000)
committerJames Troup <james@nocrew.org>
Wed, 8 May 2002 11:08:45 +0000 (11:08 +0000)
ashley

diff --git a/ashley b/ashley
index fdf2c6150c38bc3915867a2a29ae2ac522e1c830..12b860a63f68865cb904ce2f046d28ba283b1301 100755 (executable)
--- a/ashley
+++ b/ashley
@@ -1,8 +1,8 @@
 #!/usr/bin/env python
 
 # Dump variables from a .katie file to stdout
-# Copyright (C) 2001  James Troup <james@nocrew.org>
-# $Id: ashley,v 1.3 2002-04-20 13:13:00 troup Exp $
+# Copyright (C) 2001, 2002  James Troup <james@nocrew.org>
+# $Id: ashley,v 1.4 2002-05-08 11:08:45 troup Exp $
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@ def main():
     k = katie.Katie(Cnf);
     for arg in sys.argv[1:]:
         if arg[-6:] == ".katie":
-            arg = arg[:-6]+".katie";
+            arg = arg[:-6]+".changes";
         if arg[-8:] != ".changes":
             utils.warn("Skipping '%s', unknown file type." % (arg));
             continue;