Skip to content

Commit 1a59b8a

Browse files
removed exception message in environment.fout when a UnicodeEncodeError was encountered
1 parent 4e1d727 commit 1a59b8a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

SoftLayer/CLI/environment.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ def fout(self, output, newline=True):
5959
self.out(self.fmt(output), newline=newline)
6060
except UnicodeEncodeError:
6161
# If we hit an undecodeable entry, just try outputting as json.
62-
self.out("UnicodeEncodeError detected, printing as JSON.")
6362
self.out(self.fmt(output, 'json'), newline=newline)
6463

6564
def input(self, prompt, default=None, show_default=True):

0 commit comments

Comments
 (0)