Fix lint
This commit is contained in:
parent
879ec25b96
commit
37c4cb1078
|
|
@ -30,7 +30,7 @@ Changed
|
|||
running it as root if doing so would result in a wrong installation path.
|
||||
- The Makefile now can also run `setup.py build` when invoked without a target.
|
||||
- Changes to the qute-pass userscript:
|
||||
* Don't run `pass` if only an username is requested.
|
||||
* Don't run `pass` if only a username is requested.
|
||||
* Support private domains like `myrouter.local`.
|
||||
- Performance improvements when loading config files.
|
||||
|
||||
|
|
|
|||
|
|
@ -925,7 +925,8 @@ def test_version_output(params, stubs, monkeypatch):
|
|||
'QLibraryInfo.location': (lambda _loc: 'QT PATH'),
|
||||
'sql.version': lambda: 'SQLITE VERSION',
|
||||
'_uptime': lambda: datetime.timedelta(hours=1, minutes=23, seconds=45),
|
||||
'_autoconfig_loaded': lambda: "yes" if params.autoconfig_loaded else "no",
|
||||
'_autoconfig_loaded': lambda: ("yes" if params.autoconfig_loaded
|
||||
else "no"),
|
||||
}
|
||||
|
||||
substitutions = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue