0

当我跑

$ s3cmd

我明白了

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    An unexpected error has occurred.
  Please report the following lines to:
   s3tools-bugs@lists.sourceforge.net
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Problem: ValueError: incomplete format
S3cmd:   1.0.1

Traceback (most recent call last):
  File "/usr/bin/s3cmd", line 2006, in <module>
    main()
  File "/usr/bin/s3cmd", line 1795, in main
    cfg = Config(options.config)
  File "/usr/lib/python2.7/site-packages/S3/Config.py", line 88, in __init__
    self.read_config_file(configfile)
  File "/usr/lib/python2.7/site-packages/S3/Config.py", line 105, in read_config_file
    cp = ConfigParser(configfile)
  File "/usr/lib/python2.7/site-packages/S3/Config.py", line 142, in __init__
    self.parse_file(file, sections)
  File "/usr/lib/python2.7/site-packages/S3/Config.py", line 170, in parse_file
    print_value = (data["value"][:2]+"...%d_chars..."+data["value"][-1:]) % (len(data["value"]) - 3)
ValueError: incomplete format

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    An unexpected error has occurred.
    Please report the above lines to:
   s3tools-bugs@lists.sourceforge.net
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

有人有什么想法吗??

4

1 回答 1

1

我发现问题出在哪里。

我正在配置 s3cmds3cmd --config

s3cmd 要求我为 GPG 设置加密密码/密码

$ s3cmd --configure
...
Encryption password is used to protect your files from reading
by unauthorized persons while in transfer to S3
Encryption password 

我设置了非常强大的密码,包括非 AZ 字符(as %)。s3cmd --configure没有转义这些字符,因此我的配置文件是这样生成的:

cat ~/.s3cfg
...
gpg_passphrase = examplepassword123%%
...

如果其他人有这种问题:要解决此问题,请删除 s3cmd 配置文件并再次运行配置并仅使用 az AZ 0-9 字符设置密码/密码

 rm ~/.s3cfg
 s3cmd --configure
于 2013-05-23T12:38:52.583 回答