Skip to content
Snippets Groups Projects
Commit 325babf1de93 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

fileset: access status fields by name rather than index

parent 9e893247a41c
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@
"""
# i18n: "modified" is a keyword
getargs(x, 0, 0, _("modified takes no arguments"))
s = mctx.status()[0]
s = mctx.status().modified
return [f for f in mctx.subset if f in s]
def added(mctx, x):
......@@ -133,7 +133,7 @@
"""
# i18n: "added" is a keyword
getargs(x, 0, 0, _("added takes no arguments"))
s = mctx.status()[1]
s = mctx.status().added
return [f for f in mctx.subset if f in s]
def removed(mctx, x):
......@@ -142,7 +142,7 @@
"""
# i18n: "removed" is a keyword
getargs(x, 0, 0, _("removed takes no arguments"))
s = mctx.status()[2]
s = mctx.status().removed
return [f for f in mctx.subset if f in s]
def deleted(mctx, x):
......@@ -151,7 +151,7 @@
"""
# i18n: "deleted" is a keyword
getargs(x, 0, 0, _("deleted takes no arguments"))
s = mctx.status()[3]
s = mctx.status().deleted
return [f for f in mctx.subset if f in s]
def unknown(mctx, x):
......@@ -161,7 +161,7 @@
"""
# i18n: "unknown" is a keyword
getargs(x, 0, 0, _("unknown takes no arguments"))
s = mctx.status()[4]
s = mctx.status().unknown
return [f for f in mctx.subset if f in s]
def ignored(mctx, x):
......@@ -171,7 +171,7 @@
"""
# i18n: "ignored" is a keyword
getargs(x, 0, 0, _("ignored takes no arguments"))
s = mctx.status()[5]
s = mctx.status().ignored
return [f for f in mctx.subset if f in s]
def clean(mctx, x):
......@@ -180,7 +180,7 @@
"""
# i18n: "clean" is a keyword
getargs(x, 0, 0, _("clean takes no arguments"))
s = mctx.status()[6]
s = mctx.status().clean
return [f for f in mctx.subset if f in s]
def func(mctx, a, b):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment