mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Merge branch 'dev'
This commit is contained in:
commit
b3a651010a
1 changed files with 3 additions and 3 deletions
|
@ -124,7 +124,7 @@ def get_args(ctx, args, *, rem=False, rm=False, lim=False):
|
|||
|
||||
try:
|
||||
remaining.remove('-d')
|
||||
except KeyError:
|
||||
except ValueError:
|
||||
remaining.remove('-dm')
|
||||
|
||||
if rm:
|
||||
|
@ -134,10 +134,10 @@ def get_args(ctx, args, *, rem=False, rm=False, lim=False):
|
|||
|
||||
try:
|
||||
remaining.remove('-r')
|
||||
except KeyError:
|
||||
except ValueError:
|
||||
try:
|
||||
remaining.remove('-rm')
|
||||
except KeyError:
|
||||
except ValueError:
|
||||
remaining.remove('-remove')
|
||||
|
||||
if lim:
|
||||
|
|
Loading…
Reference in a new issue