From 98a5c7ae69499cc94a1d362aafb9bb2c1eb20ee8 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 12 Sep 2012 01:12:05 -0700 Subject: chflags: fixed empty opts argument This broke in commit 09de8dc47ec48af2276dfa098dd5e1d3d09ddbdd. --- pym/portage/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 8d5793c03..ee5104211 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -347,7 +347,11 @@ if platform.system() in ('FreeBSD',): @classmethod def chflags(cls, path, flags, opts=""): - cmd = ['chflags', opts, '%o' % (flags,), path] + cmd = ['chflags'] + if opts: + cmd.append(opts) + cmd.append('%o' % (flags,)) + cmd.append(path) encoding = _encodings['fs'] if sys.hexversion < 0x3000000 or sys.hexversion >= 0x3020000: # Python 3.1 does not support bytes in Popen args. -- cgit v1.2.3-65-gdbad