diff options
| author | Alon Levy <alevy@redhat.com> | 2010-12-11 15:55:19 +0200 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-03-20 15:25:51 +0100 |
| commit | 63703e43492b638a6adb78a0d514503a0a6271a9 (patch) | |
| tree | 1bf344e615e7f4d9ee3433275c5648c665c47b80 /python_modules | |
| parent | bd84cda1fe0054abac40c68fcd0a0a4fe8474273 (diff) | |
| download | spice-common-63703e43492b638a6adb78a0d514503a0a6271a9.tar.gz spice-common-63703e43492b638a6adb78a0d514503a0a6271a9.tar.xz spice-common-63703e43492b638a6adb78a0d514503a0a6271a9.zip | |
python_modules/codegen.py: fix indent error in an unused function
Diffstat (limited to 'python_modules')
| -rw-r--r-- | python_modules/codegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python_modules/codegen.py b/python_modules/codegen.py index 03c67e6..75033dc 100644 --- a/python_modules/codegen.py +++ b/python_modules/codegen.py @@ -11,7 +11,7 @@ def camel_to_underscores(s, upper = False): res = res + c.upper() else: res = res + c.lower() - return res + return res def underscores_to_camel(s): res = "" |
