From 6ba1b97f979210010a4062654df880d0721cc8a6 Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Sun, 9 Sep 2012 11:44:43 -0400 Subject: [PATCH] Change default relationship categories to use 'd' and 's' for 'developing' and 'stable' relationships. --- polygraph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polygraph.py b/polygraph.py index 88bd3df..758cd50 100755 --- a/polygraph.py +++ b/polygraph.py @@ -22,8 +22,8 @@ gender_colors = { # Relationship types... feel free to edit to suit your poly family's needs relationship_colors = { - 'v': 'blue', - 'ds': 'red' + 's': 'blue', + 'd': 'red' }