diff options
| author | fuzzyray <fuzzyray@gentoo.org> | 2010-04-08 21:19:35 +0000 |
|---|---|---|
| committer | fuzzyray <fuzzyray@gentoo.org> | 2010-04-08 21:19:35 +0000 |
| commit | 14fd12e714322cf743891ddd81dc94d4801a1255 (patch) | |
| tree | e8960621a492c9011cb1f1ce95b352fdfbdb7c3b | |
| parent | f146d54860527cf1cfe8010d09730fd0a20fc690 (diff) | |
| download | gentoolkit-14fd12e714322cf743891ddd81dc94d4801a1255.tar.gz | |
Fix bad indentation
svn path=/trunk/gentoolkit/; revision=769
| -rwxr-xr-x | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -18,10 +18,10 @@ __version__ = os.getenv('VERSION', default='9999') cwd = os.getcwd() # Load EPREFIX from Portage, fall back to the empty string if it fails - try: - from portage.const import EPREFIX - except AttributeError: - EPREFIX='' +try: + from portage.const import EPREFIX +except AttributeError: + EPREFIX='' # Bash files that need `VERSION=""` subbed, relative to this dir: |
