summaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-04 17:22:47 +0000
committerDavid Robillard <d@drobilla.net>2010-02-04 17:22:47 +0000
commite4247eef223b8661c1756e70176dc5c503f562cf (patch)
tree82b8ce570d34959d5faf3b104d4e261cd66b390c /src/scripts
parent7c19aa2a97c1e19b27b66c58a84c46489101950e (diff)
downloadingen-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')
-rw-r--r--src/scripts/python/ingen.py2
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)