diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-05-08 22:29:52 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-05-08 22:29:52 +0200 |
commit | f084d377c696c2efb2a82c8e5b30835150d359ed (patch) | |
tree | d23a0736493faa059c37139188d29496f7b2f620 | |
parent | kill another header and trim yet again whitespaces (diff) | |
download | java-config-f084d377c696c2efb2a82c8e5b30835150d359ed.tar.gz java-config-f084d377c696c2efb2a82c8e5b30835150d359ed.tar.bz2 java-config-f084d377c696c2efb2a82c8e5b30835150d359ed.zip |
remove extraneous braces
-rwxr-xr-x | src/java-config-2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java-config-2 b/src/java-config-2 index 62a34ef..dfd9c24 100755 --- a/src/java-config-2 +++ b/src/java-config-2 @@ -161,7 +161,7 @@ def list_available_vms(option, opt, value, parser): printer._print('%i)\t%s [%s]' % (i, vm.query('VERSION'), vm.name()) + '%r (Build Only)%$') found_build_only = True - if (found_build_only): + if found_build_only: printer._print('') printer._print('%r' + 'VMs marked as Build Only may contain Security Vulnerabilities and/or be EOL.') printer._print('%r' + 'Gentoo recommends not setting these VMs as either your System or User VM.') |