Slightly rewritten docstrings in singleinstance
This commit is contained in:
parent
5cf4d8a946
commit
86f0860cb2
|
@ -1,8 +1,13 @@
|
||||||
#! /usr/bin/env python
|
"""
|
||||||
|
This is based upon the singleton class from
|
||||||
|
`tendo <https://github.com/pycontribs/tendo>`_
|
||||||
|
which is under the Python Software Foundation License version 2
|
||||||
|
"""
|
||||||
|
|
||||||
import atexit
|
import atexit
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import state
|
import state
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -15,10 +20,6 @@ class singleinstance:
|
||||||
"""
|
"""
|
||||||
Implements a single instance application by creating a lock file
|
Implements a single instance application by creating a lock file
|
||||||
at appdata.
|
at appdata.
|
||||||
|
|
||||||
This is based upon the singleton class from tendo
|
|
||||||
https://github.com/pycontribs/tendo
|
|
||||||
which is under the Python Software Foundation License version 2
|
|
||||||
"""
|
"""
|
||||||
def __init__(self, flavor_id="", daemon=False):
|
def __init__(self, flavor_id="", daemon=False):
|
||||||
self.initialized = False
|
self.initialized = False
|
||||||
|
|
Loading…
Reference in New Issue
Block a user