aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/Config.py4
-rw-r--r--util/Strings.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/util/Config.py b/util/Config.py
index bf1d5da..7bc8dff 100644
--- a/util/Config.py
+++ b/util/Config.py
@@ -39,9 +39,9 @@ def compositeXMLTrees(parentTree, overridingTree):
if mode != 'Replace' and mode != 'Merge':
print 'Bad Mode. Replacing'
mode = 'Replace'
- if mode = 'Replace':
+ if mode == 'Replace':
pass #we don't need to do anything
- if mode = 'Merge':
+ if mode == 'Merge':
pass #TODO: code this
def findElementsByTag(tag, eList):
diff --git a/util/Strings.py b/util/Strings.py
index 698b4ec..40ad86b 100644
--- a/util/Strings.py
+++ b/util/Strings.py
@@ -4,4 +4,4 @@ DEFAULT_MAPPER = 'DefaultPixelMapper'
#XMLStuff
-OVERRIDE_BEHAVIOR
+OVERRIDE_BEHAVIOR = 'OverrideBehavior'