From 883f601bca7c6c8f26937b295dadfd2f6a4f023e Mon Sep 17 00:00:00 2001
From: "Kelly (KT) Thompson" <kgt@lanl.gov>
Date: Thu, 9 Jun 2016 19:18:25 -0600
Subject: [PATCH] Fix style issues.

---
 var/spack/repos/builtin/packages/serf/package.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/var/spack/repos/builtin/packages/serf/package.py b/var/spack/repos/builtin/packages/serf/package.py
index 7ca72096aa..817db68241 100644
--- a/var/spack/repos/builtin/packages/serf/package.py
+++ b/var/spack/repos/builtin/packages/serf/package.py
@@ -24,8 +24,10 @@
 ##############################################################################
 from spack import *
 
+
 class Serf(Package):
-    """Apache Serf - a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library"""
+    """Apache Serf - a high performance C-based HTTP client library
+    built upon the Apache Portable Runtime (APR) library"""
     homepage  = 'https://serf.apache.org/'
     url       = 'https://archive.apache.org/dist/serf/serf-1.3.8.tar.bz2'
 
@@ -46,9 +48,9 @@ def install(self, spec, prefix):
         options.append('APU=%s' % spec['apr-util'].prefix)
         options.append('OPENSSL=%s' % spec['openssl'].prefix)
         options.append('LINKFLAGS=-L%s/lib -L%s/lib' %
-                       ( spec['expat'].prefix, spec['zlib'].prefix ))
+                       (spec['expat'].prefix, spec['zlib'].prefix))
         options.append('CPPFLAGS=-I%s/include -I%s/include' %
-                       ( spec['expat'].prefix, spec['zlib'].prefix ))
+                       (spec['expat'].prefix, spec['zlib'].prefix))
 
         scons(*options)
         scons('install')
-- 
GitLab