diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-12-30 19:08:21 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-12-30 19:08:21 +0100 |
| commit | 74b2639b574ecaf600798d234d93e2d807f63021 (patch) | |
| tree | 06d7b7edac24f77bf4702ac59000d44d8edab84c | |
| parent | 87af9591237575c20b3fa6736bd9718e687b49b5 (diff) | |
| download | jasper-client-74b2639b574ecaf600798d234d93e2d807f63021.tar.gz jasper-client-74b2639b574ecaf600798d234d93e2d807f63021.zip | |
Fix module import paths in standard plugins
| -rw-r--r-- | client/modules/Birthday.py | 2 | ||||
| -rw-r--r-- | client/modules/HN.py | 2 | ||||
| -rw-r--r-- | client/modules/MPDControl.py | 2 | ||||
| -rw-r--r-- | client/modules/News.py | 2 | ||||
| -rw-r--r-- | client/modules/Time.py | 2 | ||||
| -rw-r--r-- | client/modules/Weather.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/client/modules/Birthday.py b/client/modules/Birthday.py index 200af94..c012237 100644 --- a/client/modules/Birthday.py +++ b/client/modules/Birthday.py @@ -2,7 +2,7 @@ import datetime import re import facebook -from app_utils import getTimezone +from client.app_utils import getTimezone WORDS = ["BIRTHDAY"] diff --git a/client/modules/HN.py b/client/modules/HN.py index d205829..df74b17 100644 --- a/client/modules/HN.py +++ b/client/modules/HN.py @@ -3,7 +3,7 @@ import urllib2 import re import random from bs4 import BeautifulSoup -import app_utils +from client import app_utils from semantic.numbers import NumberService WORDS = ["HACKER", "NEWS", "YES", "NO", "FIRST", "SECOND", "THIRD"] diff --git a/client/modules/MPDControl.py b/client/modules/MPDControl.py index ee0904b..54f479c 100644 --- a/client/modules/MPDControl.py +++ b/client/modules/MPDControl.py @@ -3,7 +3,7 @@ import re import logging import difflib import mpd -from mic import Mic +from client.mic import Mic # Standard module stuff WORDS = ["MUSIC", "SPOTIFY"] diff --git a/client/modules/News.py b/client/modules/News.py index 433ea05..f02c71e 100644 --- a/client/modules/News.py +++ b/client/modules/News.py @@ -1,6 +1,6 @@ # -*- coding: utf-8-*- import feedparser -import app_utils +from client import app_utils import re from semantic.numbers import NumberService diff --git a/client/modules/Time.py b/client/modules/Time.py index 8bc5c8e..4726839 100644 --- a/client/modules/Time.py +++ b/client/modules/Time.py @@ -1,7 +1,7 @@ # -*- coding: utf-8-*- import datetime import re -from app_utils import getTimezone +from client.app_utils import getTimezone from semantic.dates import DateService WORDS = ["TIME"] diff --git a/client/modules/Weather.py b/client/modules/Weather.py index b57991b..3bfad71 100644 --- a/client/modules/Weather.py +++ b/client/modules/Weather.py @@ -6,7 +6,7 @@ import urllib import feedparser import requests import bs4 -from app_utils import getTimezone +from client.app_utils import getTimezone from semantic.dates import DateService WORDS = ["WEATHER", "TODAY", "TOMORROW"] |
