From b4e26123f3fae34bdc20462b047ce16cc41303c9 Mon Sep 17 00:00:00 2001 From: winwaed Date: Thu, 20 Jun 2013 20:02:46 -0400 Subject: [PATCH] Invalid parameter in call to run_semaphore fixed The call to run_semaphore() on line 153 in semaphore(), used the incorrect parameter name "semaphore". This should be called "release". This parameter passes the path to the SEMAFOR installation. --- semaphore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semaphore.py b/semaphore.py index a031ae5..32a8f75 100644 --- a/semaphore.py +++ b/semaphore.py @@ -150,6 +150,6 @@ def semaphore(text='', files='', semaphore=release): else: sample='../samples/sample.txt' - run_semaphore(semaphore=semaphore, sample=sample) + run_semaphore(release=semaphore, sample=sample) return import_semaphore()