This function was called from only one place, and the default values weren't used there, so they're useless. Signed-off-by: Karl Hasselström <kha@xxxxxxxxxxx> --- stgit/commands/status.py | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/stgit/commands/status.py b/stgit/commands/status.py index 708dd16..02a5832 100644 --- a/stgit/commands/status.py +++ b/stgit/commands/status.py @@ -66,9 +66,8 @@ options = [make_option('-m', '--modified', action = 'store_true')] -def status(files = None, modified = False, new = False, deleted = False, - conflict = False, unknown = False, noexclude = False, - diff_flags = []): +def status(files, modified, new, deleted, conflict, unknown, noexclude, + diff_flags): """Show the tree status """ cache_files = git.tree_status(files, - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html