Skip to content

Commit

Permalink
make uniform throughout codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Jul 28, 2017
1 parent 87f98b1 commit 0213079
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hatch/files/vc/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ def setup_git(d, package_name):
try:
subprocess.call(['git', 'init', '--quiet'], shell=NEED_SUBPROCESS_SHELL)
except:
print('Could not find "git" executable')
print('Could not find `git` executable')
GitAttributes().write(d)
GitIgnore(package_name).write(d)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
if not os.path.exists(SETTINGS_FILE):
restore_settings()
except:
print('Failed to create config file. Try again via "hatch config --restore".')
print('Failed to create config file. Try again via `hatch config --restore`.')

with open('hatch/__init__.py', 'r') as f:
for line in f:
Expand Down

0 comments on commit 0213079

Please sign in to comment.