Skip to content

Commit 49ed14d

Browse files
committed
fix help option
1 parent b07e1bd commit 49ed14d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git_fleximod/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def print_help(self, file=None):
1717
for path in candidate_paths:
1818
if os.path.exists(path):
1919
with open(path) as f:
20-
print( f.read_text(encoding="utf-8"), file=file)
20+
print( f.read(), file=file)
2121
return
2222
print( "README.md not found.", file=file)
2323

0 commit comments

Comments
 (0)