diff --git a/conf.py b/conf.py index a57998a..46c643f 100644 --- a/conf.py +++ b/conf.py @@ -142,7 +142,7 @@ def get_database_name(dbname): This returns '.db' if the running config name is PyLink's default (pylink.yml), and '-.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 '-testing.db'.""" if confname != 'pylink': dbname += '-%s' % confname diff --git a/example-conf.yml b/example-conf.yml index 7c55641..1f27c7c 100644 --- a/example-conf.yml +++ b/example-conf.yml @@ -654,13 +654,13 @@ logging: # PyLink directory, with a filename based on the current instance name # and the target name: instancename-targetname.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", this will create log/pylink-errors.log + # When running with "pylink someconf.yml", this will create log/someconf-errors.log "errors": loglevel: ERROR - # 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 + # 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 "commands": loglevel: INFO