Use "from . import" for relative imports

Will fail in python3 otherwise.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth
2012-02-05 12:52:12 +01:00
parent 014caddee6
commit b33f2452f0
7 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@
import os.path
import re
from threading import Lock
from LocalStatus import LocalStatusFolder
from .LocalStatus import LocalStatusFolder
try:
import sqlite3 as sqlite
except: