Skip to content

Commit 6443284

Browse files
author
Alan Christie
committed
- reversed stdout string (test fix)
1 parent 177b208 commit 6443284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/pipelines_utils/StreamJsonListLoader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self, filename_or_stream):
3939

4040
stream_character = self.stream.read(1)
4141
if not stream_character == '[':
42-
raise NotImplementedError('Found "%s". Only JSON-streams of lists (that start with a "[") are supported.' % stream_character)
42+
raise NotImplementedError('Only JSON-streams of lists (that start with a "[") are supported. Found "%s".' % stream_character)
4343

4444
def __iter__(self):
4545
return self

0 commit comments

Comments
 (0)