From 38edcb605f9723c98a01c74d91198a74851955fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 17 Sep 2013 16:39:23 +0200 Subject: [PATCH] - drop double read(), the copy_pac method is doing that already and python 2.6 is crashing here --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index e159ba755b..cce2323198 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -2621,7 +2621,7 @@ def do_copypac(self, subcmd, opts, *args): revision=rev, comment=comment, keep_link=opts.keep_link) - print(r.read()) + print(r) @cmdln.option('-r', '--repo', metavar='REPO',