diff -u blogtk-1.1/src/BloGTK.py blogtk-1.1/src/BloGTK.py --- blogtk-1.1/src/BloGTK.py +++ blogtk-1.1/src/BloGTK.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # BloGTK Version 1.1 # (C)2004 Jay Reding diff -u blogtk-1.1/src/config.py blogtk-1.1/src/config.py --- blogtk-1.1/src/config.py +++ blogtk-1.1/src/config.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # BloGTK Version 1.0 # Configuration Routines - config.py @@ -270,6 +270,8 @@ self.section = self.accountsCombo.entry.get_text() URL = self.blogURLEntry.get_text() + if not (URL.startswith("http://") or URL.startswith("https://")): + URL = "http://" + URL user = self.blogUserEntry.get_text() passwd = self.blogPassEntry.get_text() font = self.fontEntry.get_text() diff -u blogtk-1.1/src/customtags.py blogtk-1.1/src/customtags.py --- blogtk-1.1/src/customtags.py +++ blogtk-1.1/src/customtags.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # BloGTK Version 1.0 # Custom Tags Routines - customtags.py diff -u blogtk-1.1/src/post.py blogtk-1.1/src/post.py --- blogtk-1.1/src/post.py +++ blogtk-1.1/src/post.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # BloGTK Version 1.0 # Entry Posting/Editing Routines - post.py diff -u blogtk-1.1/src/preview.py blogtk-1.1/src/preview.py --- blogtk-1.1/src/preview.py +++ blogtk-1.1/src/preview.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # BloGTK Version 1.0 # Preview System Routines - preview.py diff -u blogtk-1.1/src/spellcheck.py blogtk-1.1/src/spellcheck.py --- blogtk-1.1/src/spellcheck.py +++ blogtk-1.1/src/spellcheck.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # BloGTK Version 1.0 # Spell Check Routines - spellcheck.py diff -u blogtk-1.1/src/proxy.py blogtk-1.1/src/proxy.py --- blogtk-1.1/src/proxy.py +++ blogtk-1.1/src/proxy.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.4 +#!/usr/bin/python # 0.9 - This code has been sent by Michael Twomey and adds support for basic HTTP proxies in BloGTK. diff -u blogtk-1.1/debian/control blogtk-1.1/debian/control --- blogtk-1.1/debian/control +++ blogtk-1.1/debian/control @@ -1,7 +1,8 @@ Source: blogtk Section: web Priority: optional -Maintainer: Diego Andres Sanabria (diegueus9) +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Diego Andres Sanabria (diegueus9) Build-Depends-Indep: imagemagick, docbook-to-man, python, pkg-config (>= 0.15.0-4) Build-Depends: debhelper (>= 5.0.37.2), python-central (>=0.5) XS-Python-Version: ${python:Versions} diff -u blogtk-1.1/debian/changelog blogtk-1.1/debian/changelog --- blogtk-1.1/debian/changelog +++ blogtk-1.1/debian/changelog @@ -1,3 +1,13 @@ +blogtk (1.1-2ubuntu1) hardy; urgency=low + + * Fixed crasher with Python 2.5 (in config.py) (LP: #196813) + * Changed #!/usr/bin/env python2.4 to #!/usr/bin/python because BloGTK + now works with Python 2.5 (LP: #196813) + * Modify Maintainer value to match the DebianMaintainerField + specification. + + -- Simon Ochsenreither Fri, 29 Feb 2008 15:51:06 +0100 + blogtk (1.1-2build1) feisty; urgency=low * Rebuild for python2.5 as the default python version.