[master] 3f0b634 Missing comma

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Thu Nov 24 17:08:04 CET 2016


commit 3f0b634bb491cee0ec8ca306f7ba8f0f8513a0db
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date:   Thu Nov 24 17:07:21 2016 +0100

    Missing comma

diff --git a/lib/libvcc/generate.py b/lib/libvcc/generate.py
index e006b89..d002541 100755
--- a/lib/libvcc/generate.py
+++ b/lib/libvcc/generate.py
@@ -160,7 +160,7 @@ returns = (
 sp_variables = [
 	('remote.ip',
 		'IP',
-		('both'),
+		('both',),
 		(), """
 		The IP address of the other end of the TCP connection.
 		This can either be the clients IP, or the outgoing IP
@@ -169,7 +169,7 @@ sp_variables = [
 	),
 	('client.ip',
 		'IP',
-		('both'),
+		('both',),
 		(), """
 		The client's IP address.
 		"""
@@ -185,14 +185,14 @@ sp_variables = [
 	),
 	('local.ip',
 		'IP',
-		('both'),
+		('both',),
 		(), """
 		The IP address of the local end of the TCP connection.
 		"""
 	),
 	('server.ip',
 		'IP',
-		('both'),
+		('both',),
 		(), """
 		The IP address of the socket on which the client
 		connection was received.



More information about the varnish-commit mailing list