[Python-modules-commits] r15974 - in packages/xlwt/trunk/debian (4 files)

jandd at users.alioth.debian.org jandd at users.alioth.debian.org
Thu Mar 3 22:25:42 UTC 2011


    Date: Thursday, March 3, 2011 @ 22:25:38
  Author: jandd
Revision: 15974

add debian/patches/fix_import_in_workbook.patch and
debian/patches/series to fix an import issue in xlwt/Worksheet.py

Added:
  packages/xlwt/trunk/debian/patches/
  packages/xlwt/trunk/debian/patches/fix_import_in_workbook.patch
  packages/xlwt/trunk/debian/patches/series
Modified:
  packages/xlwt/trunk/debian/changelog

Modified: packages/xlwt/trunk/debian/changelog
===================================================================
--- packages/xlwt/trunk/debian/changelog	2011-03-03 22:21:36 UTC (rev 15973)
+++ packages/xlwt/trunk/debian/changelog	2011-03-03 22:25:38 UTC (rev 15974)
@@ -14,6 +14,8 @@
     - bump python dependency to 2.6.5-1~
     - add Breaks: ${python:Breaks}
   * change debian/source/format to "3.0 (quilt)"
+  * add debian/patches/fix_import_in_workbook.patch and
+    debian/patches/series to fix an import issue in xlwt/Worksheet.py
 
  -- Jan Dittberner <jandd at debian.org>  Thu, 03 Mar 2011 22:45:15 +0100
 

Added: packages/xlwt/trunk/debian/patches/fix_import_in_workbook.patch
===================================================================
--- packages/xlwt/trunk/debian/patches/fix_import_in_workbook.patch	                        (rev 0)
+++ packages/xlwt/trunk/debian/patches/fix_import_in_workbook.patch	2011-03-03 22:25:38 UTC (rev 15974)
@@ -0,0 +1,16 @@
+Subject: fix import of Row in xlwt/Worksheet.py
+Author: Jan Dittberner <jandd at debian.org>
+
+--- a/xlwt/Worksheet.py
++++ b/xlwt/Worksheet.py
+@@ -48,8 +48,8 @@
+     ## Constructor
+     #################################################################
+     def __init__(self, sheetname, parent_book, cell_overwrite_ok=False):
+-        import Row
+-        self.Row = Row.Row
++        from xlwt import Row
++        self.Row = Row
+ 
+         import Column
+         self.Column = Column.Column

Added: packages/xlwt/trunk/debian/patches/series
===================================================================
--- packages/xlwt/trunk/debian/patches/series	                        (rev 0)
+++ packages/xlwt/trunk/debian/patches/series	2011-03-03 22:25:38 UTC (rev 15974)
@@ -0,0 +1 @@
+fix_import_in_workbook.patch




More information about the Python-modules-commits mailing list