setup.py: cosmetic
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 9 Sep 2012 17:56:04 +0000 (19:56 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 9 Sep 2012 17:56:04 +0000 (19:56 +0200)
setup.py

index 0c8c16d60a96323c7e8daf00b3d259a6dcf44e5d..742bdc71120cf73b2ef5194d7f758c361010d211 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,4 @@
 #!/usr/bin/env python3
-# vim: noexpandtab:tabstop=8:softtabstop=8
-""" Migen's distutils distribution and installation script. """
 
 import sys, os
 from setuptools import setup
@@ -11,7 +9,7 @@ README = open(os.path.join(here, "README")).read()
 
 required_version = (3, 1)
 if sys.version_info < required_version:
-       raise SystemExit("migen requires python {0} or greater".format(
+       raise SystemExit("Migen requires python {0} or greater".format(
                ".".join(map(str, required_version))))
 
 setup(