summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrigory Petrov <grigory.v.p@gmail.com>2012-12-25 14:31:58 +0400
committerGrigory Petrov <grigory.v.p@gmail.com>2012-12-25 14:31:58 +0400
commitd187b16ed1aacd6347f005702967c806979adc24 (patch)
tree154dc2c54fdf033252a4e4a0617d1ebe8d3edd6c
parenta0a572b4cb869dbfd1bf0daf7029546646ce63f0 (diff)
downloadpygments-d187b16ed1aacd6347f005702967c806979adc24.tar.gz
More fixed for PEP-8 formatting.
-rw-r--r--pygments/cmdline.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pygments/cmdline.py b/pygments/cmdline.py
index 447f57a9..6fa80305 100644
--- a/pygments/cmdline.py
+++ b/pygments/cmdline.py
@@ -193,12 +193,12 @@ def main(args=sys.argv):
usage = USAGE % ((args[0],) * 6)
if sys.platform in ['win32', 'cygwin']:
- try:
- # Provide coloring under Windows, if possible
- import colorama
- colorama.init()
- except ImportError:
- pass
+ try:
+ # Provide coloring under Windows, if possible
+ import colorama
+ colorama.init()
+ except ImportError:
+ pass
try:
popts, args = getopt.getopt(args[1:], "l:f:F:o:O:P:LS:a:N:hVHg")