Fix adding torrents when not showing the add torrent dialog in Windows

This commit is contained in:
Andrew Resch 2009-10-31 00:08:53 +00:00
parent 60fdcb3bd8
commit 6e695d8410
2 changed files with 3 additions and 2 deletions

View file

@ -5,8 +5,9 @@
* Fix torrent name being blank when renaming root folder to /
==== GtkUI ====
* replace & with & in the details tab to ensure there are no markup errors
* Replace & with & in the details tab to ensure there are no markup errors
* Consider 0 unlimited when displaying limits in the statusbar
* Fix adding torrents when not showing the add torrent dialog in Windows
==== Web ====
* Fix #1046 changing auto managed via the details tab

View file

@ -163,4 +163,4 @@ def process_args(args):
component.get("AddTorrentDialog").show(config["focus_add_dialog"])
else:
path = os.path.abspath(arg)
client.core.add_torrent_file(os.path.split(path)[-1], base64.encodestring(open(path).read()), None)
client.core.add_torrent_file(os.path.split(path)[-1], base64.encodestring(open(path, "rb").read()), None)