kyegupov / py-unrar2

Automatically exported from code.google.com/p/py-unrar2
MIT License
2 stars 4 forks source link

Files in protected archive are silently skipped if password is None #13

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

>>> try:
>>>    UnRAR2.RarFile('test_protected_files.rar').extract()
>>> except IncorrectRARPassword:
>>>    errored = True

What is the expected output?

>>> print errored
True
>>> print os.path.exists('test'+os.sep+'top_secret_xxx_file.txt')
False

What do you see instead?

>>> print errored
False
>>> print os.path.exists('test'+os.sep+'top_secret_xxx_file.txt')
False

What version of the product are you using?

0.99.3

On what operating system?

Windows 7

Please provide any additional information below.

Python 2.7

Original issue reported on code.google.com by alexande...@gmail.com on 17 Mar 2014 at 12:03

GoogleCodeExporter commented 9 years ago

Original comment by yk4e...@gmail.com on 2 Aug 2014 at 9:38

GoogleCodeExporter commented 9 years ago

Original comment by yk4e...@gmail.com on 2 Aug 2014 at 9:51

GoogleCodeExporter commented 9 years ago
Finally implemented in 0.99.5. Sorry for the long wait.

Original comment by yk4e...@gmail.com on 27 Dec 2014 at 9:19

GoogleCodeExporter commented 9 years ago
Whoops, replied to the wrong issue.

Original comment by yk4e...@gmail.com on 27 Dec 2014 at 9:20

GoogleCodeExporter commented 9 years ago
Fixed in 0.99.6 (now for real).

Original comment by yk4e...@gmail.com on 27 Dec 2014 at 9:49