Show
Ignore:
Timestamp:
10/06/08 00:29:29 (16 years ago)
Author:
jerome
Message:

Removed trailing spaces.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykoticon/trunk/setup.py

    r176 r3439  
    11#! /usr/bin/env python 
    2 # -*- coding: ISO-8859-15 -*- 
     2# -*- coding: iso-8859-15 -*- 
    33 
    44"""Packaging and installation script for PyKotIcon.""" 
     
    1616# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1717# GNU General Public License for more details. 
    18 #  
     18# 
    1919# You should have received a copy of the GNU General Public License 
    2020# along with this program; if not, write to the Free Software 
     
    3636        sys.stderr.write("py2exe is not installed ! ABORTING.\n") 
    3737        sys.exit(-1) 
    38     else :     
     38    else : 
    3939        directory = os.sep.join(["share", "pykoticon"]) 
    4040        mandir = os.sep.join(["share", "man", "man1"]) 
    41         manpages = glob.glob(os.sep.join(["man", "*.1"]))     
     41        manpages = glob.glob(os.sep.join(["man", "*.1"])) 
    4242        initialdatafiles = [(mandir, manpages)] 
    4343        withPy2EXE = False 
    44 else :         
     44else : 
    4545    directory = "." 
    4646    initialdatafiles = [] 
     
    4848 
    4949config = imp.load_source("config", os.path.join("bin", "pykoticon")) 
    50 setupDictionary = { "name" : "pykoticon",  
     50setupDictionary = { "name" : "pykoticon", 
    5151                    "version" : config.__version__, 
    5252                    "license" : config.__license__,