[Pkg-python-debian-commits] r73 trunk: * examples/debfile/ar, examples/debfile/changelog_head,

John Wright john at movingsucks.org
Fri Aug 17 17:42:24 UTC 2007


------------------------------------------------------------
revno: 73
committer: John Wright <john at movingsucks.org>
branch nick: trunk
timestamp: Fri 2007-08-17 11:42:24 -0600
message:
  * examples/debfile/ar, examples/debfile/changelog_head,
    examples/debfile/dpkg-info, examples/debfile/extract_cron:
    - Fix ImportError caused by importing modules as if they were top-level
      modules, rather than modules in the debian_bundle package
      (Closes: #438428)
modified:
  debian/changelog
  examples/debfile/ar
  examples/debfile/changelog_head
  examples/debfile/dpkg-info
  examples/debfile/extract_cron
-------------- next part --------------
=== modified file 'debian/changelog'
--- a/debian/changelog	2007-08-17 13:03:32 +0000
+++ b/debian/changelog	2007-08-17 17:42:24 +0000
@@ -6,7 +6,14 @@
       extra ar members should be ignored (closes: #438486). Also add the
       corresponding regression test to test_debfile.py
 
- -- Stefano Zacchiroli <zack at debian.org>  Fri, 17 Aug 2007 14:59:34 +0200
+  [ John Wright ]
+  * examples/debfile/ar, examples/debfile/changelog_head,
+    examples/debfile/dpkg-info, examples/debfile/extract_cron:
+    - Fix ImportError caused by importing modules as if they were top-level
+      modules, rather than modules in the debian_bundle package
+      (Closes: #438428)
+
+ -- John Wright <jsw at debian.org>  Fri, 17 Aug 2007 11:37:42 -0600
 
 python-debian (0.1.4) unstable; urgency=low
 

=== modified file 'examples/debfile/ar'
--- a/examples/debfile/ar	2007-07-15 09:36:22 +0000
+++ b/examples/debfile/ar	2007-08-17 17:42:24 +0000
@@ -19,7 +19,7 @@
 import os
 import sys
 
-import arfile
+from debian_bundle import arfile
 
 if __name__ == '__main__':
     if len(sys.argv) < 3:

=== modified file 'examples/debfile/changelog_head'
--- a/examples/debfile/changelog_head	2007-07-15 07:51:50 +0000
+++ b/examples/debfile/changelog_head	2007-08-17 17:42:24 +0000
@@ -14,7 +14,7 @@
 import string
 import sys
 
-import debfile
+from debian_bundle import debfile
 
 if __name__ == '__main__':
     if len(sys.argv) > 3 or len(sys.argv) < 2:

=== modified file 'examples/debfile/dpkg-info'
--- a/examples/debfile/dpkg-info	2007-07-14 22:25:38 +0000
+++ b/examples/debfile/dpkg-info	2007-08-17 17:42:24 +0000
@@ -17,7 +17,7 @@
 import string
 import sys
 
-import debfile
+from debian_bundle import debfile
 
 if __name__ == '__main__':
     if len(sys.argv) != 2:

=== modified file 'examples/debfile/extract_cron'
--- a/examples/debfile/extract_cron	2007-07-14 22:25:38 +0000
+++ b/examples/debfile/extract_cron	2007-08-17 17:42:24 +0000
@@ -14,7 +14,7 @@
 import re
 import sys
 
-import debfile
+from debian_bundle import debfile
 
 def is_cron(fname):
     return re.match(r'^etc/cron\.(d|daily|hourly|monthly|weekly)\b', fname)



More information about the pkg-python-debian-commits mailing list