invirt.config.run_parts_list: fix unclear docstring
authorGreg Price <price@mit.edu>
Sun, 28 Dec 2008 06:01:06 +0000 (01:01 -0500)
committerGreg Price <price@mit.edu>
Sun, 28 Dec 2008 06:01:06 +0000 (01:01 -0500)
svn path=/trunk/packages/invirt-base/; revision=1926

debian/changelog
python/invirt/config.py

index 8c9d137..ea065ed 100644 (file)
@@ -1,3 +1,9 @@
+invirt-base (0.0.18) unstable; urgency=low
+
+  * run_parts_list: fix unclear docstring
+
+ -- Greg Price <price@mit.edu>  Sun, 28 Dec 2008 01:00:07 -0500
+
 invirt-base (0.0.17) unstable; urgency=low
 
   * Remove apticron and molly-guard dependencies,
index 86d9c8a..e4aad28 100644 (file)
@@ -38,7 +38,8 @@ def run_parts_list(dirname):
     """Reimplements Debian's run-parts --list.
 
     One difference from run-parts's behavior: run-parts --list /foo/
-    will give output like /foo//bar, because Python code tends to expect this.
+    will give output like /foo//bar, but run_parts_list('/foo/') gives
+    /foo/bar in deference to Python conventions.
 
     Matches documented behavior of run-parts in debianutils v2.28.2, dated 2007.
     """