Skip to content

Commit

Permalink
[modules] more import fixes for issue #153
Browse files Browse the repository at this point in the history
  • Loading branch information
Elad Alfassa committed Nov 9, 2012
1 parent 885a79c commit 76cab77
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/dice.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

from random import randint, seed
from modules.calc import calculate
from willie.modules.calc import calculate
import re

seed()
Expand Down
2 changes: 1 addition & 1 deletion modules/meetbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import time
import os
import urllib2
from modules.url import find_title
from willie.modules.url import find_title
from willie.tools import Ddict
import codecs

Expand Down
2 changes: 1 addition & 1 deletion modules/reload.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

import sys, os.path, time, imp
import irc
import willie.irc
import subprocess

def f_reload(willie, trigger):
Expand Down
2 changes: 1 addition & 1 deletion modules/wiktionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

import re
import web
import willie.web as web

uri = 'http://en.wiktionary.org/w/index.php?title=%s&printable=yes'
r_tag = re.compile(r'<[^>]+>')
Expand Down
4 changes: 2 additions & 2 deletions modules/xkcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"""

import random
from modules.search import google_search
from modules.url import find_title
from willie.modules.search import google_search
from willie.modules.url import find_title
import urllib2
from lxml import etree
import re
Expand Down

0 comments on commit 76cab77

Please sign in to comment.