Skip to content

Commit

Permalink
explicit bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Alan Weaver committed Feb 29, 2016
1 parent 2e1e05d commit 771c04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydl/pydlutils/tests/test_yanny.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_write_table_yanny(self):
filename = self.data('table.par')
a = [1, 4, 5]
b = [2.0, 5.0, 8.2]
c = ['x', 'y', 'z']
c = [b'x', b'y', b'z']
t = Table([a, b, c], names=('a', 'b', 'c'),
meta={'name': 'first table'})
t.write(filename, tablename='test')
Expand Down

0 comments on commit 771c04e

Please sign in to comment.