mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-09 17:53:35 +01:00
...
This commit is contained in:
parent
c5906fa0b9
commit
4b2d60348c
1 changed files with 4 additions and 1 deletions
|
|
@ -251,7 +251,10 @@ def change_alignment(self, colname, alignment):
|
|||
col))
|
||||
|
||||
def is_custom_column(self, cc_label):
|
||||
return cc_label in self.custom_columns
|
||||
try:
|
||||
return cc_label in self.custom_columns
|
||||
except AttributeError:
|
||||
return False
|
||||
|
||||
def read_config(self):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Reference in a new issue