[cedar-backup-svn] SF.net SVN: cedar-backup:[950] cedar-backup2/trunk
Brought to you by:
pronovic
|
From: <pro...@us...> - 2009-08-16 20:12:18
|
Revision: 950
http://cedar-backup.svn.sourceforge.net/cedar-backup/?rev=950&view=rev
Author: pronovic
Date: 2009-08-16 20:12:09 +0000 (Sun, 16 Aug 2009)
Log Message:
-----------
Release 2.19.4
Modified Paths:
--------------
cedar-backup2/trunk/CedarBackup2/filesystem.py
cedar-backup2/trunk/CedarBackup2/release.py
cedar-backup2/trunk/Changelog
Modified: cedar-backup2/trunk/CedarBackup2/filesystem.py
===================================================================
--- cedar-backup2/trunk/CedarBackup2/filesystem.py 2009-08-16 20:04:58 UTC (rev 949)
+++ cedar-backup2/trunk/CedarBackup2/filesystem.py 2009-08-16 20:12:09 UTC (rev 950)
@@ -914,7 +914,7 @@
try:
import hashlib
s = hashlib.sha1()
- except Exception, e:
+ except:
import sha
s = sha.new()
f = open(path, mode="rb") # in case platform cares about binary reads
Modified: cedar-backup2/trunk/CedarBackup2/release.py
===================================================================
--- cedar-backup2/trunk/CedarBackup2/release.py 2009-08-16 20:04:58 UTC (rev 949)
+++ cedar-backup2/trunk/CedarBackup2/release.py 2009-08-16 20:12:09 UTC (rev 950)
@@ -34,7 +34,7 @@
AUTHOR = "Kenneth J. Pronovici"
EMAIL = "pro...@ie..."
COPYRIGHT = "2004-2009"
-VERSION = "2.19.3"
-DATE = "29 Mar 2009"
+VERSION = "2.19.4"
+DATE = "16 Aug 2009"
URL = "http://cedar-backup.sourceforge.net/"
Modified: cedar-backup2/trunk/Changelog
===================================================================
--- cedar-backup2/trunk/Changelog 2009-08-16 20:04:58 UTC (rev 949)
+++ cedar-backup2/trunk/Changelog 2009-08-16 20:12:09 UTC (rev 950)
@@ -1,9 +1,10 @@
-Version 2.19.4 unreleased
+Version 2.19.4 16 Aug 2009
- * Use hashlib module instead of deprecated sha module when available.
- * Use set built-in type rather than deprecated sets.Set class when available.
- * Use tarfile.format=GNU_FORMAT rather than deprecated tarfile.posix=False.
- * Fix testGenerateTarfile_002() so expectations match Python 2.6 results.
+ * Add support for the Python 2.6 interpreter.
+ - Use hashlib instead of deprecated sha module when available
+ - Use set type rather than deprecated sets.Set when available
+ - Use tarfile.format rather than deprecated tarfile.posix when available
+ - Fix testGenerateTarfile_002() so expectations match Python 2.6 results
Version 2.19.3 29 Mar 2009
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|