diff --git a/pywiUpload.py b/pywiUpload.py index 59e1757..7a55e2c 100755 --- a/pywiUpload.py +++ b/pywiUpload.py @@ -2,7 +2,7 @@ # -*- coding:utf-8 -*- # pywiUpload - Piwigo gallery generator -# Copyright (C) 2009 - saimon.org +# Copyright (C) 2009-2011 - saimon.org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -33,8 +33,8 @@ import os import sys from configobj import ConfigObj from optparse import OptionParser -from lib.ftp import FtpUpload -from lib.image import Gallery +from pywiupload.ftp import FtpUpload +from pywiupload.image import Gallery def read_params(config_file): diff --git a/lib/__init__.py b/pywiupload/__init__.py similarity index 100% rename from lib/__init__.py rename to pywiupload/__init__.py diff --git a/lib/ftp.py b/pywiupload/ftp.py similarity index 100% rename from lib/ftp.py rename to pywiupload/ftp.py diff --git a/lib/image.py b/pywiupload/image.py similarity index 100% rename from lib/image.py rename to pywiupload/image.py diff --git a/lib/utils.py b/pywiupload/utils.py similarity index 100% rename from lib/utils.py rename to pywiupload/utils.py diff --git a/runtests.py b/runtests.py index 8f20bdf..da0a3da 100755 --- a/runtests.py +++ b/runtests.py @@ -2,7 +2,7 @@ # -*- coding:utf-8 -*- # pywiUpload - Piwigo gallery generator -# Copyright (C) 2009-2010 - saimon.org +# Copyright (C) 2009-2011 - saimon.org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,7 +26,7 @@ additionnal information for debugging purpose. import os import sys import pywiUpload -from lib.image import Gallery +from pywiupload.image import Gallery if __name__ == '__main__': # read params from config file