From 7e684e70892184f3f53f03fdc589c44865a471cb Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Sat, 18 May 2013 10:24:54 -0400 Subject: [PATCH] made pep8 tests pass --- xvfbwrapper/xvfbwrapper.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xvfbwrapper/xvfbwrapper.py b/xvfbwrapper/xvfbwrapper.py index 24055b5..01bf4fe 100644 --- a/xvfbwrapper/xvfbwrapper.py +++ b/xvfbwrapper/xvfbwrapper.py @@ -24,11 +24,12 @@ class Xvfb: self.colordepth = colordepth self.xvfb_cmd = [ - '-screen', '0', '%dx%dx%d' % (self.width, self.height, self.colordepth) + '-screen', '0', '%dx%dx%d' % + (self.width, self.height, self.colordepth) ] for key, value in kwargs.items(): - self.xvfb_cmd = self.xvfb_cmd + ["-%s" % key, value] + self.xvfb_cmd = self.xvfb_cmd + ['-%s' % key, value] self.proc = None if 'DISPLAY' in os.environ: