diff options
| author | Eli Collins <elic@assurancetechnologies.com> | 2013-04-09 13:50:04 -0400 |
|---|---|---|
| committer | Eli Collins <elic@assurancetechnologies.com> | 2013-04-09 13:50:04 -0400 |
| commit | 2dbabd30e3639bc8f382db1ecc69aada0a6c827d (patch) | |
| tree | 774aabe6a02b37df0ac8a5aee0c96f247c041766 /passlib/_setup | |
| parent | 6e158b409ec52814ee4ae015daa13028806e21de (diff) | |
| download | passlib-2dbabd30e3639bc8f382db1ecc69aada0a6c827d.tar.gz | |
style cleanups
Diffstat (limited to 'passlib/_setup')
| -rw-r--r-- | passlib/_setup/docdist.py | 2 | ||||
| -rw-r--r-- | passlib/_setup/stamp.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/passlib/_setup/docdist.py b/passlib/_setup/docdist.py index dadb4b5..19c4dc1 100644 --- a/passlib/_setup/docdist.py +++ b/passlib/_setup/docdist.py @@ -1,4 +1,4 @@ -"custom command to build doc.zip file" +"""custom command to build doc.zip file""" #============================================================================= # imports #============================================================================= diff --git a/passlib/_setup/stamp.py b/passlib/_setup/stamp.py index dfa62bc..8a68658 100644 --- a/passlib/_setup/stamp.py +++ b/passlib/_setup/stamp.py @@ -1,4 +1,4 @@ -"update version string during build" +"""update version string during build""" #============================================================================= # imports #============================================================================= @@ -21,7 +21,7 @@ def get_command_class(opts, name): return opts['cmdclass'].get(name) or Distribution().get_command_class(name) def stamp_source(base_dir, version, dry_run=False): - "update version string in passlib dist" + """update version string in passlib dist""" path = os.path.join(base_dir, "passlib", "__init__.py") with open(path) as fh: input = fh.read() |
