From ee47d6ab7b4c46daa0ce00cc68e3d961c9a03419 Mon Sep 17 00:00:00 2001 From: lericson Date: Mon, 22 Mar 2010 22:25:00 +0100 Subject: [PATCH] Nitpick syntax to go below 80 chars --- pylibmc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pylibmc.py b/pylibmc.py index 78c8a5a..0c8de95 100644 --- a/pylibmc.py +++ b/pylibmc.py @@ -132,10 +132,10 @@ class Client(_pylibmc.client): Reverses the integer constants for `hash` and `distribution` into more understandable string values. See *set_behaviors* for info. """ - behaviors = super(Client, self).get_behaviors() - behaviors["hash"] = hashers_rvs[behaviors["hash"]] - behaviors["distribution"] = distributions_rvs[behaviors["distribution"]] - return BehaviorDict(self, behaviors) + bvrs = super(Client, self).get_behaviors() + bvrs["hash"] = hashers_rvs[bvrs["hash"]] + bvrs["distribution"] = distributions_rvs[bvrs["distribution"]] + return BehaviorDict(self, bvrs) def set_behaviors(self, behaviors): """Sets the behaviors on the underlying C client instance.