Skip to content

Commit

Permalink
Change base URL
Browse files Browse the repository at this point in the history
  • Loading branch information
suchow committed Sep 28, 2015
1 parent 8971042 commit 8f3e187
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion proselint/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@
import os
import imp

base_url = "prose.lifelinter.com/"


def log_error(line, column, error_code, msg):
"""Print a message to the command line."""
click.echo(str(line) + ":" +
str(column) + " \t" +
error_code + ": " +
msg + " " +
"http://lifelinter.com/" + error_code)
base_url + error_code)


@click.command()
Expand Down

0 comments on commit 8f3e187

Please sign in to comment.