From: Catalin Marinas Date: Thu, 19 Jun 2008 21:12:58 +0000 (+0100) Subject: Fix export error introduced by recent convertion X-Git-Tag: v0.15-rc1~206 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/06f9bd6b6f683f995b6c4f5e4a67325f4355c147 Fix export error introduced by recent convertion The parse_patches function wasn't accessible anymore. Signed-off-by: Catalin Marinas --- diff --git a/stgit/commands/export.py b/stgit/commands/export.py index 1010a88..183a1b5 100644 --- a/stgit/commands/export.py +++ b/stgit/commands/export.py @@ -91,7 +91,7 @@ def func(parser, options, args): applied = stack.patchorder.applied unapplied = stack.patchorder.unapplied if len(args) != 0: - patches = parse_patches(args, applied + unapplied, len(applied)) + patches = common.parse_patches(args, applied + unapplied, len(applied)) else: patches = applied