bugfix:reports when no color style found

bzr revid: nch@tinyerp.com-20090504091226-knu1wtdmttpi7f1b
This commit is contained in:
Naresh Choksy 2009-05-04 14:42:26 +05:30
parent 1f5a45028d
commit 968fe9815f
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
# $Id$
#
@ -29,6 +29,8 @@ regex_t = re.compile('\(([0-9\.]*),([0-9\.]*),([0-9\.]*)\)')
regex_h = re.compile('#([0-9a-zA-Z][0-9a-zA-Z])([0-9a-zA-Z][0-9a-zA-Z])([0-9a-zA-Z][0-9a-zA-Z])')
def get(col_str):
if col_str == None:
col_str = ''
global allcols
if col_str in allcols.keys():
return allcols[col_str]