From f3ba063be168a0d8946ca085e9cbe3ca516d1805 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 12 Feb 2008 03:15:53 +0100 Subject: [PATCH] Remove unused data field MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström Signed-off-by: Karl Hasselström --- stgit/lib/stack.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stgit/lib/stack.py b/stgit/lib/stack.py index 9c4a910..3de3776 100644 --- a/stgit/lib/stack.py +++ b/stgit/lib/stack.py @@ -75,7 +75,6 @@ class Patch(object): class PatchOrder(object): """Keeps track of patch order, and which patches are applied. Works with patch names, not actual patches.""" - __list_order = [ 'applied', 'unapplied' ] def __init__(self, stack): self.__stack = stack self.__lists = {} -- [mdw]