We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7027a42 commit 9597cc6Copy full SHA for 9597cc6
git_fleximod/cli.py
@@ -18,9 +18,9 @@ def print_help(self, file=None):
18
for path in candidate_paths:
19
if os.path.exists(path):
20
with open(path) as f:
21
- print( f.read())
+ print( f.read(), file=file)
22
return
23
- print( "README.md not found.")
+ print( "README.md not found.", file=file)
24
25
def find_root_dir(filename=".gitmodules"):
26
""" finds the highest directory in tree
0 commit comments