Code typo fix

This commit is contained in:
Strahinja Val Markovic 2013-09-16 13:55:41 -07:00
parent 6acc381262
commit b6c311c4dd

View File

@ -53,7 +53,7 @@ def GetBufferOption( buffer_object, option ):
if hasattr( buffer_object, 'options' ):
return buffer_object.options[ option ]
to_eval = 'getbufvar({0}, "&{1}")'.format( buffer.number, option )
to_eval = 'getbufvar({0}, "&{1}")'.format( buffer_object.number, option )
return GetVariableValue( to_eval )