more little things

This commit is contained in:
Luke Rogers 2014-02-14 16:30:38 +13:00
parent b4d7e200a3
commit 4447e6cd1f
9 changed files with 25 additions and 22 deletions

View file

@ -8,9 +8,9 @@ def qrcode(inp):
"""qrcode [link] returns a link for a QR code."""
args = {
"cht": "qr", # chart type
"cht": "qr", # chart type (QR)
"chs": "200x200", # dimensions
"chl": inp
"chl": inp # data
}
link = http.prepare_url("http://chart.googleapis.com/chart", args)