Fix loading of the pickled fixture under py3

This commit is contained in:
Vineet 2014-02-05 22:44:42 +05:30
parent 9f0b1765b4
commit 36e8baab36
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import pickle
from pipdeptree import req_version, non_top_pkg_name, render_tree
with open('tests/pkgs.pickle') as f:
with open('tests/pkgs.pickle', 'rb') as f:
pkgs = pickle.load(f)