Skip to content

Commit

Permalink
Small change to example
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileyChris committed Nov 10, 2011
1 parent 664c62e commit bca8adc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qrcode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from qrcode.constants import *


def run_example():
qr = QRCode()
def run_example(*args, **kwargs):
qr = QRCode(*args, **kwargs)
qr.addData("http://www.lincolnloop.com")
qr.make()

Expand Down

0 comments on commit bca8adc

Please sign in to comment.