Fix python2 syntaxe in doc

Change-Id: I07555b658f3730851baaa0772b2567f1f23bcab6
This commit is contained in:
Hervé Beraud 2020-03-05 17:38:09 +01:00
parent 8a8248d764
commit aa2a5c21eb

View File

@ -25,7 +25,7 @@ A simple example of oslo.cache in use::
@MEMOIZE
def f(x):
print x
print(x)
return x
An example config file for this is::