]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/utils.py
Revert "Revert "Merge commit 'stew/content_generation' into merge""
[dak.git] / daklib / utils.py
index 963abd5db40469c3484b52254d078b280c5728b9..96bc9befd8bc920379983d3a1babd11c7cf6448f 100755 (executable)
@@ -1499,6 +1499,13 @@ def is_email_alias(email):
 ################################################################################
 
 def get_changes_files(dir):
+    """
+    Takes a directory and lists all .changes files in it (as well as chdir'ing
+    to the directory; this is due to broken behaviour on the part of p-u/p-a
+    when you're not in the right place)
+
+    Returns a list of filenames
+    """
     try:
         # Much of the rest of p-u/p-a depends on being in the right place
         os.chdir(dir)
@@ -1518,4 +1525,4 @@ apt_pkg.ReadConfigFileISC(Cnf,default_config)
 if which_conf_file() != default_config:
     apt_pkg.ReadConfigFileISC(Cnf,which_conf_file())
 
-################################################################################
+###############################################################################