diff options
author | mjdenkowski <michael.j.denkowski@gmail.com> | 2013-10-22 04:16:07 -0400 |
---|---|---|
committer | mjdenkowski <michael.j.denkowski@gmail.com> | 2013-10-22 04:16:07 -0400 |
commit | 27b9d82c5ef261a313c6bbaaf838ad292b631d8b (patch) | |
tree | 6ec47ecdbee96b4d13a03e3960e8613fcd6f1365 /realtime | |
parent | fcaaa588bc1cac13c41d5115e54a9cd07da73cdc (diff) |
Don't getvalue() yet
Diffstat (limited to 'realtime')
-rw-r--r-- | realtime/rt/rt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/realtime/rt/rt.py b/realtime/rt/rt.py index d1d01ad8..c0aec410 100644 --- a/realtime/rt/rt.py +++ b/realtime/rt/rt.py @@ -349,7 +349,7 @@ class RealtimeTranslator: # Filename, StringIO, or None (stdin) if file_or_stringio: if isinstance(file_or_stringio, StringIO.StringIO): - input = file_or_stringio.getvalue() + input = file_or_stringio else: input = open(file_or_stringio) else: |