summaryrefslogtreecommitdiff
path: root/ricky/impattern
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-10-04 17:35:12 -0700
committerpepperpepperpepper <pepper@scannerjammer.com>2015-10-04 17:35:12 -0700
commit69845d6d9594db1b1ed22a47c2042c48ef98b495 (patch)
treed472a96b890aec5c438a0752eeba8d2bab59002e /ricky/impattern
parent4f08494370d226b168f485253db2d87ef2da4222 (diff)
made some small fixes
Diffstat (limited to 'ricky/impattern')
-rwxr-xr-xricky/impattern/impattern.py2
-rw-r--r--ricky/impattern/params.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ricky/impattern/impattern.py b/ricky/impattern/impattern.py
index 885649c..577623e 100755
--- a/ricky/impattern/impattern.py
+++ b/ricky/impattern/impattern.py
@@ -1,4 +1,4 @@
-from ricky.api import Im
+from ricky.im import Im
from ricky.impattern.params import ImPatternParams
from ricky.config import IMPATTERN_URL
diff --git a/ricky/impattern/params.py b/ricky/impattern/params.py
index 34d70bf..90907fc 100644
--- a/ricky/impattern/params.py
+++ b/ricky/impattern/params.py
@@ -21,7 +21,7 @@ class ImPatternParams(Params):
def __init__(self):
self.params = [
Username(name="username", required=0),
- ImageUrl(name="imageurl", required=1),
+ ImageUrl(name="image_url", required=1),
MultiSelect(name="pattern_url", required=1, options=pattern_url_options)
]