diff options
author | José Fonseca <[email protected]> | 2010-10-28 17:38:18 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-10-28 17:38:18 +0100 |
commit | 5479fa34d9acebd55f68c23a278cf382d0e84248 (patch) | |
tree | 76e186724e3314e1ff4bede748eb24339968c5fb /src/gallium/drivers/llvmpipe | |
parent | a54ab4960b86839f73e7c16fdde00670a67ee80e (diff) |
gallium: Avoid using __doc__ in python scripts.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_tile_soa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_soa.py b/src/gallium/drivers/llvmpipe/lp_tile_soa.py index e49f9c62fe7..8df7b236fe0 100644 --- a/src/gallium/drivers/llvmpipe/lp_tile_soa.py +++ b/src/gallium/drivers/llvmpipe/lp_tile_soa.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -''' +CopyRight = ''' /************************************************************************** * * Copyright 2009 VMware, Inc. @@ -510,7 +510,7 @@ def main(): print '/* This file is autogenerated by lp_tile_soa.py from u_format.csv. Do not edit directly. */' print # This will print the copyright message on the top of this file - print __doc__.strip() + print CopyRight.strip() print print '#include "pipe/p_compiler.h"' print '#include "util/u_format.h"' |