Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
f852bb33
Commit
f852bb33
authored
Apr 26, 2020
by
A. Unique TensorFlower
Browse files
Merge pull request #8439 from stagedml:fix-baremetal-stdout
PiperOrigin-RevId: 308562689
parents
bc6bf2f4
e61c0ebc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
official/utils/flags/_conventions.py
official/utils/flags/_conventions.py
+1
-1
No files found.
official/utils/flags/_conventions.py
View file @
f852bb33
...
...
@@ -40,7 +40,7 @@ def _stdout_utf8():
codecs
.
lookup
(
"utf-8"
)
except
LookupError
:
return
False
return
sys
.
stdout
.
encoding
==
"UTF-8"
return
getattr
(
sys
.
stdout
,
"
encoding
"
,
""
)
==
"UTF-8"
if
_stdout_utf8
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment