From ecf14df03004dee8e76867f0ff51369c9289c65f Mon Sep 17 00:00:00 2001 From: LexManos Date: Fri, 19 Oct 2012 21:14:03 -0700 Subject: [PATCH] Fix error in merging of exec's --- fml/install/fml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fml/install/fml.py b/fml/install/fml.py index 1691a7269..ab8d4c409 100644 --- a/fml/install/fml.py +++ b/fml/install/fml.py @@ -744,7 +744,7 @@ def gen_merged_exc(mcp_dir, fml_dir): print 'Error: Exec for shared function does not match client and server:' print 'Function: ' + key print 'Client: ' + value - print 'Server: ' + server[value] + print 'Server: ' + server[key] if value != '|': common[key] = value client.pop(key)