diff options
Diffstat (limited to 'grc/tests/test_xml_parser.py')
-rw-r--r-- | grc/tests/test_xml_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/tests/test_xml_parser.py b/grc/tests/test_xml_parser.py index cde08b29b0..0fd5a94b3d 100644 --- a/grc/tests/test_xml_parser.py +++ b/grc/tests/test_xml_parser.py @@ -21,7 +21,7 @@ def test_flow_graph_converter(): def test_flow_graph_converter_with_fp(): filename = path.join(path.dirname(__file__), 'resources', 'test_compiler.grc') - with open(filename) as fp: + with open(filename, 'rb') as fp: data = flow_graph.from_xml(fp) flow_graph.dump(data, sys.stdout) |