Changeset 270f7f689302b5de93e4989765f4ff17ed67a5a9

Show
Ignore:
Timestamp:
03/16/08 22:31:35 (10 months ago)
Author:
Sebastien Martini <ookoi@…>
Parents:
f5b94bfc7073e9121dda5863b9e09d89255abd17
Children:
5a750c19ab9417b184372ad9d3811eec8d69a5e8
git-committer:
Sebastien Martini <ookoi@sundae.(none)> / 2008-03-16T22:31:35Z+0100
Message:

Cosmetic changes.

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • .gitignore

    r998bc89 r270f7f6  
    1111*.bak 
    1212a.out 
     13*.out 
  • pyinotify.py

    r40b9c9e r270f7f6  
    7474__author__ = "seb@dbzteam.org (Sebastien Martini)" 
    7575 
    76 __version__ = "0.8.0m" 
     76__version__ = "0.8.0n" 
    7777 
    7878__metaclass__ = type  # Use new-style classes by default 
     
    945945                    else: 
    946946                        if not force_kill: 
    947                             s = ('Running process with same pid ' 
    948                                  'file %s already exists') 
    949                             raise NotifierError(s % pid_file) 
     947                            s = 'There is already a pid file %s with pid %d' 
     948                            raise NotifierError(s % (pid_file, pid)) 
    950949                        else: 
    951950                            os.kill(pid, 9)