From 126db304c21d98f0fa6b53bb2c3fd29ed93a1ca2 Mon Sep 17 00:00:00 2001 From: Corey Goldberg Date: Tue, 7 Mar 2017 19:19:35 -0500 Subject: [PATCH] update copyright --- README.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 1053ca3..3a45002 100644 --- a/README.rst +++ b/README.rst @@ -16,7 +16,7 @@ - Dev: https://github.com/cgoldberg/xvfbwrapper - Releases: https://pypi.python.org/pypi/xvfbwrapper -- Author: `Corey Goldberg `_ - 2012-2016 +- Author: `Corey Goldberg `_ - 2012-2017 - License: MIT ---- @@ -35,11 +35,10 @@ xvfbwrapper is a python module for controlling Xvfb. Xvfb (X virtual framebuffer) is a display server implementing the X11 display server protocol. It runs in memory and does not require a physical display. Only a network layer is necessary. -Xvfb is especially useful for running acceptance tests on headless servers. +Xvfb is useful for running acceptance tests on headless servers. ---- - ---------------------------------- Install xvfbwrapper from PyPI: ---------------------------------- @@ -87,7 +86,7 @@ Xvfb is especially useful for running acceptance tests on headless servers. from xvfbwrapper import Xvfb - vdisplay = Xvfb(width=1280, height=740, colordepth=16) + vdisplay = Xvfb(width=1280, height=740) vdisplay.start() # launch stuff inside virtual display here.