Gentoo Archives: gentoo-portage-dev

From: Ali Polatel <hawking@g.o>
To: gentoo-portage-dev@l.g.o
Subject: [gentoo-portage-dev] [PATCH] Bad indentation in bin/archive-conf
Date: Sat, 05 Jul 2008 12:01:31
Message-Id: 1215256464-30802-1-git-send-email-hawking@gentoo.org
1 bin/archive-conf has bad indentation:
2 RefactoringTool: Can't parse bin/archive-conf:
3 IndentationError: unindent does not match any outer indentation level (<tokenize>, line 19) [ !! ]
4
5 Attached patch fixes this.
6 ---
7 bin/archive-conf | 4 ++--
8 1 files changed, 2 insertions(+), 2 deletions(-)
9
10 diff --git a/bin/archive-conf b/bin/archive-conf
11 index 63ce9b2..caf8fa2 100755
12 --- a/bin/archive-conf
13 +++ b/bin/archive-conf
14 @@ -14,8 +14,8 @@ import os, sys
15 try:
16 import portage
17 except ImportError:
18 - from os import path as osp
19 - sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
20 + from os import path as osp
21 + sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
22 import portage
23
24 import dispatch_conf
25 --
26 Regards,
27 Ali Polatel
28
29 --
30 gentoo-portage-dev@l.g.o mailing list

Replies