3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

Remove references to ./pylink

Running the launcher from the source folder isn't necessary anymore.
This commit is contained in:
James Lu 2020-03-24 18:06:36 -07:00
parent 8ffd787075
commit 380854f88a
2 changed files with 5 additions and 5 deletions

View File

@ -142,7 +142,7 @@ def get_database_name(dbname):
This returns '<dbname>.db' if the running config name is PyLink's default This returns '<dbname>.db' if the running config name is PyLink's default
(pylink.yml), and '<dbname>-<config name>.db' for anything else. For example, (pylink.yml), and '<dbname>-<config name>.db' for anything else. For example,
if this is called from an instance running as './pylink testing.yml', it if this is called from an instance running as 'pylink testing.yml', it
would return '<dbname>-testing.db'.""" would return '<dbname>-testing.db'."""
if confname != 'pylink': if confname != 'pylink':
dbname += '-%s' % confname dbname += '-%s' % confname

View File

@ -654,13 +654,13 @@ logging:
# PyLink directory, with a filename based on the current instance name # PyLink directory, with a filename based on the current instance name
# and the target name: instancename-targetname.log # and the target name: instancename-targetname.log
# When running with ./pylink, this will create log/pylink-errors.log # When running with "pylink", this will create log/pylink-errors.log
# When running with ./pylink someconf.yml, this will create log/someconf-errors.log # When running with "pylink someconf.yml", this will create log/someconf-errors.log
"errors": "errors":
loglevel: ERROR loglevel: ERROR
# Ditto above. When running with ./pylink, it will use log/pylink-commands.log # Ditto above. When running with "pylink", it will use log/pylink-commands.log
# When running with ./pylink someconf.yml, this will create log/someconf-commands.log # When running with "pylink someconf.yml", this will create log/someconf-commands.log
"commands": "commands":
loglevel: INFO loglevel: INFO