Skip to content

Commit

Permalink
Fix string formatting for helper (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
turndn authored and Rosalie241 committed Oct 2, 2018
1 parent da2397a commit 6adda05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def project_data(view):
def current_solution_filepath_or_project_rootpath(view):
project_file = project_file_name(view)
if project_file is not None:
print('project file %s found', project_file)
print('project file %s found' % project_file)

data = project_data(view)
if 'solution_file' not in data:
Expand Down

0 comments on commit 6adda05

Please sign in to comment.