mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-07 15:08:07 +01:00
proton: Force append_forever to be a named argument
And remove redundant default parameter value.
This commit is contained in:
parent
32fe36d9b2
commit
ccb2397f4c
1 changed files with 1 additions and 1 deletions
2
proton
2
proton
|
|
@ -1023,7 +1023,7 @@ class Session:
|
||||||
except (OSError, IOError, TypeError, KeyError):
|
except (OSError, IOError, TypeError, KeyError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def setup_logging(self, append_forever=False):
|
def setup_logging(self, *, append_forever):
|
||||||
basedir = self.env.get("PROTON_LOG_DIR", os.environ["HOME"])
|
basedir = self.env.get("PROTON_LOG_DIR", os.environ["HOME"])
|
||||||
|
|
||||||
if append_forever:
|
if append_forever:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue