Browse Source

rename lib directory

pull/9/merge
Simon 15 years ago
parent
commit
0818220466
  1. 6
      pywiUpload.py
  2. 0
      pywiupload/__init__.py
  3. 0
      pywiupload/ftp.py
  4. 0
      pywiupload/image.py
  5. 0
      pywiupload/utils.py
  6. 4
      runtests.py

6
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):

0
lib/__init__.py → pywiupload/__init__.py

0
lib/ftp.py → pywiupload/ftp.py

0
lib/image.py → pywiupload/image.py

0
lib/utils.py → pywiupload/utils.py

4
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

Loading…
Cancel
Save