Slightly rewritten docstrings in singleinstance

This commit is contained in:
Dmitri Bogomolov 2019-10-16 14:42:16 +03:00
parent 5cf4d8a946
commit 86f0860cb2
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 6 additions and 5 deletions

View File

@ -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