diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2014-01-31 07:36:00 -0800 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2014-01-31 07:39:18 -0800 |
commit | 42ad8fd9f720e52fa578dccde9591bac2ea97c7d (patch) | |
tree | b7a9120eac386075bbdc2c351d1eddc01d5152c3 /mirrorselect | |
parent | Fix some long lines. (diff) | |
download | mirrorselect-42ad8fd9f720e52fa578dccde9591bac2ea97c7d.tar.gz mirrorselect-42ad8fd9f720e52fa578dccde9591bac2ea97c7d.tar.bz2 mirrorselect-42ad8fd9f720e52fa578dccde9591bac2ea97c7d.zip |
Indent adjustment
Diffstat (limited to 'mirrorselect')
-rwxr-xr-x | mirrorselect/main.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mirrorselect/main.py b/mirrorselect/main.py index 4c26c02..15b8ead 100755 --- a/mirrorselect/main.py +++ b/mirrorselect/main.py @@ -140,16 +140,16 @@ class MirrorSelect(object): need some finishing touches. """ desc = "\n".join(( - self.output.white("examples:"), - "", - self.output.white(" automatic:"), - " # mirrorselect -s5", - " # mirrorselect -s3 -b10 -o >> /mnt/gentoo/etc/portage/make.conf", - " # mirrorselect -D -s4", - "", - self.output.white(" interactive:"), - " # mirrorselect -i -r", - )) + self.output.white("examples:"), + "", + self.output.white(" automatic:"), + " # mirrorselect -s5", + " # mirrorselect -s3 -b10 -o >> /mnt/gentoo/etc/portage/make.conf", + " # mirrorselect -D -s4", + "", + self.output.white(" interactive:"), + " # mirrorselect -i -r", + )) parser = OptionParser( formatter=ColoredFormatter(self.output), description=desc, version='Mirrorselect version: %s' % version) |