Changeset 270f7f689302b5de93e4989765f4ff17ed67a5a9
- 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:
-
Legend:
- Unmodified
- Added
- Removed
-
-
|
r40b9c9e
|
r270f7f6
|
|
| 74 | 74 | __author__ = "seb@dbzteam.org (Sebastien Martini)" |
| 75 | 75 | |
| 76 | | __version__ = "0.8.0m" |
| | 76 | __version__ = "0.8.0n" |
| 77 | 77 | |
| 78 | 78 | __metaclass__ = type # Use new-style classes by default |
| … |
… |
|
| 945 | 945 | else: |
| 946 | 946 | 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)) |
| 950 | 949 | else: |
| 951 | 950 | os.kill(pid, 9) |