Browse code

* s3cmd: Fix imports from S3.Utils

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

Michal Ludvig authored on 2010/03/19 12:55:54
Showing 2 changed files
... ...
@@ -1,6 +1,7 @@
1 1
 2010-03-19  Michal Ludvig  <mludvig@logix.net.nz>
2 2
 
3 3
 	* s3cmd, S3/AccessLog.py, ...: Added [accesslog] command.
4
+	* s3cmd: Fix imports from S3.Utils
4 5
 
5 6
 2009-12-10  Michal Ludvig  <mludvig@logix.net.nz>
6 7
 
... ...
@@ -1767,9 +1767,10 @@ if __name__ == '__main__':
1767 1767
 		from S3 import PkgInfo
1768 1768
 		from S3.S3 import S3
1769 1769
 		from S3.Config import Config
1770
+		from S3.SortedDict import SortedDict
1770 1771
 		from S3.S3Uri import S3Uri
1771 1772
 		from S3 import Utils
1772
-		from S3.Utils import unicodise
1773
+		from S3.Utils import *
1773 1774
 		from S3.Progress import Progress
1774 1775
 		from S3.CloudFront import Cmd as CfCmd
1775 1776