From e1ea20280236e97d0253a2cb3c37ed77d07c7488 Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Mon, 27 May 2013 14:13:19 +0200 Subject: [PATCH] cmdln.py: fix reimport of 're' Signed-off-by: Danny Al-Gaaf --- osc/cmdln.py | 1 - 1 file changed, 1 deletion(-) diff --git a/osc/cmdln.py b/osc/cmdln.py index 6a3f88b5b..8fa2cc035 100644 --- a/osc/cmdln.py +++ b/osc/cmdln.py @@ -1291,7 +1291,6 @@ def _summarize_doc(doc, length=60): >>> _summarize_doc("this function does this\n\nand that") 'this function does this' """ - import re if doc is None: return "" assert length > 3, "length <= 3 is absurdly short for a doc summary"