From a35f21d28aac88ebc69b0451ba930e66261861bc Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 18 Jan 2008 19:22:39 -0700 Subject: [PATCH] Fix GapString bug --- ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ip.py b/ip.py index 1dc85bb..2659284 100755 --- a/ip.py +++ b/ip.py @@ -149,7 +149,7 @@ class Chunk: def gapstr(self, drop='?'): """Return contents as a GapString""" - ret = gapstr.GapString(drop) + ret = gapstr.GapString(drop=drop) while len(ret) < self.length: f = self.collection.get(self.seq + len(ret)) if f: