Browse code

2007-08-24 Michal Ludvig <michal@logix.cz>

* s3cmd, S3/Util.py: More ElementTree imports cleanup




git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3cmd/trunk@144 830e0280-6d2a-0410-9c65-932aecc39d9d

Michal Ludvig authored on 2007/08/24 10:23:48
Showing 4 changed files
... ...
@@ -1,3 +1,7 @@
1
+2007-08-24  Michal Ludvig  <michal@logix.cz>
2
+
3
+	* s3cmd, S3/Util.py: More ElementTree imports cleanup
4
+
1 5
 2007-08-19  Michal Ludvig  <michal@logix.cz>
2 6
 
3 7
 	* NEWS: Added news for 0.9.5
... ...
@@ -6,7 +6,6 @@
6 6
 import os
7 7
 import time
8 8
 import re
9
-import elementtree.ElementTree as ET
10 9
 import string
11 10
 import random
12 11
 import md5
... ...
@@ -14,7 +14,6 @@ import re
14 14
 from copy import copy
15 15
 from optparse import OptionParser, Option, OptionValueError, IndentedHelpFormatter
16 16
 from logging import debug, info, warning, error
17
-import elementtree.ElementTree as ET
18 17
 from distutils.spawn import find_executable
19 18
 
20 19
 ## Our modules
... ...
@@ -6,7 +6,7 @@ import S3.PkgInfo
6 6
 
7 7
 if float("%d.%d" % sys.version_info[:2]) < 2.4:
8 8
 	sys.stderr.write("Your Python version %d.%d.%d is not supported.\n" % sys.version_info[:3])
9
-	sys.stderr.write("S3cmd required Python 2.4 or newer.\n")
9
+	sys.stderr.write("S3cmd requires Python 2.4 or newer.\n")
10 10
 	sys.exit(1)
11 11
 
12 12
 try: