fix style
This commit is contained in:
parent
7475c40308
commit
e0451d116a
1 changed files with 19 additions and 5 deletions
|
@ -1012,7 +1012,13 @@ class NextcloudHandler:
|
||||||
if self.is_same_key('url', obj1, obj2):
|
if self.is_same_key('url', obj1, obj2):
|
||||||
#if self.is_same_key('folder', obj1, obj2):
|
#if self.is_same_key('folder', obj1, obj2):
|
||||||
self.debug(
|
self.debug(
|
||||||
{ "action": "notify_match", "object": { "obj1": safer_obj1, "obj2": safer_obj2 } }
|
{
|
||||||
|
"action": "notify_match",
|
||||||
|
"object": {
|
||||||
|
"obj1": safer_obj1,
|
||||||
|
"obj2": safer_obj2
|
||||||
|
}
|
||||||
|
}
|
||||||
)
|
)
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
@ -1513,8 +1519,16 @@ def delete_passwords_folder(ctx, name):
|
||||||
ctx.obj['NcPasswordClient'].delete_passwords_folder(name)
|
ctx.obj['NcPasswordClient'].delete_passwords_folder(name)
|
||||||
|
|
||||||
@cli.command()
|
@cli.command()
|
||||||
@click.option('--pattern', '-p', required=True, help='Regular expression pattern to search in the password fields')
|
@click.option(
|
||||||
@click.option('--limit', '-l', default=-1, help='Maximun number of passwords to show. -1 for unlimited.')
|
'--pattern', '-p',
|
||||||
|
required=True,
|
||||||
|
help='Regular expression pattern to search in the password fields'
|
||||||
|
)
|
||||||
|
@click.option(
|
||||||
|
'--limit', '-l',
|
||||||
|
default=-1,
|
||||||
|
help='Maximun number of passwords to show. -1 for unlimited.'
|
||||||
|
)
|
||||||
@click_config_file.configuration_option()
|
@click_config_file.configuration_option()
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
def search(ctx, pattern, limit):
|
def search(ctx, pattern, limit):
|
||||||
|
|
Loading…
Reference in a new issue