diff options
author | zsloan | 2015-04-10 19:08:18 +0000 |
---|---|---|
committer | zsloan | 2015-04-10 19:08:18 +0000 |
commit | 64526b27922053d608147b2ce896b42ee9e5c2dc (patch) | |
tree | 716af10399f40c4fd483af1483818db94095f6a6 /wqflask/base/trait.py | |
parent | 1823434ff8b54df0bd8ce1d7d19a37d74e850dd5 (diff) | |
download | genenetwork2-64526b27922053d608147b2ce896b42ee9e5c2dc.tar.gz |
Added git large file system (the .gitattributes files) and fixed an issue where rat trait pages wouldn't work
Diffstat (limited to 'wqflask/base/trait.py')
-rwxr-xr-x | wqflask/base/trait.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py index 58bed865..f3648b80 100755 --- a/wqflask/base/trait.py +++ b/wqflask/base/trait.py @@ -549,6 +549,9 @@ class GeneralTrait(object): if self.alias: alias = string.replace(self.alias, ";", " ") alias = string.join(string.split(alias), ", ") + else: + alias = 'Not available' + return alias |