Browse Source

move ftp.py in lib/ subdir

pull/9/merge
Simon 16 years ago
parent
commit
c38aa3e78a
  1. 0
      __init__.py
  2. 0
      lib/__init__.py
  3. 2
      lib/ftp.py
  4. 4
      pywiUpload.py

0
__init.py__ → __init__.py

0
lib/__init__.py

2
ftp.py → lib/ftp.py

@ -2,7 +2,7 @@
# -*- coding:utf-8 -*-
# pywiUpload - Piwigo gallery generator
# Copyright (C) 2009 saimon.org
# Copyright (C) 2009 - 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

4
pywiUpload.py

@ -23,7 +23,7 @@ This script resize images, create thumbnails with some options
(rename images, squared thumbs, ...), and upload images to a FTP server.
"""
__author__ = "Saimon (contact at saimon.org)"
__author__ = "Saimon (contact at saimon dot org)"
__version__ = "0.8"
__date__ = "20100722"
__copyright__ = "Copyright (C) 2009 saimon.org"
@ -34,7 +34,7 @@ import sys
import Image
import ImageDraw
from configobj import ConfigObj
from ftp import FtpUpload
from lib.ftp import FtpUpload
class PywiUpload:
"Prepare a gallery of images for Piwigo"

Loading…
Cancel
Save