diff options
author | David Robillard <d@drobilla.net> | 2010-02-04 17:22:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-04 17:22:47 +0000 |
commit | e4247eef223b8661c1756e70176dc5c503f562cf (patch) | |
tree | 82b8ce570d34959d5faf3b104d4e261cd66b390c /src/scripts/python | |
parent | 7c19aa2a97c1e19b27b66c58a84c46489101950e (diff) | |
download | ingen-e4247eef223b8661c1756e70176dc5c503f562cf.tar.gz ingen-e4247eef223b8661c1756e70176dc5c503f562cf.tar.bz2 ingen-e4247eef223b8661c1756e70176dc5c503f562cf.zip |
... but not in python :)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2421 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/scripts/python')
-rw-r--r-- | src/scripts/python/ingen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/python/ingen.py b/src/scripts/python/ingen.py index d6408406..07698719 100644 --- a/src/scripts/python/ingen.py +++ b/src/scripts/python/ingen.py @@ -312,7 +312,7 @@ class Environment: elements = path.split("/") currentPatch = None for element in elements: - if element.empty(): + if element == "": currentPatch = self.omPatch else: currentPatch = currentPatch.getPatch(element,mustexist) |