Skip to content

Commit

Permalink
Moved seealso-links from comments to module docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Jun 14, 2011
1 parent b91979e commit f792ea4
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions cuisine/__init__.py
Expand Up @@ -12,16 +12,24 @@
Note, that right now, Cuisine only supports Debian-based Linux systems.
.. seealso::
`Deploying Django with Fabric
<http://lethain.com/entry/2008/nov/04/deploying-django-with-fabric>`_
`Notes on Python Fabric 0.9b1
<http://www.saltycrane.com/blog/2009/10/notes-python-fabric-09b1>`_
`EC2, fabric, and "err: stdin: is not a tty"
<http://blog.markfeeney.com/2009/12/ec2-fabric-and-err-stdin-is-not-tty.html>`_
:copyright: (c) 2011 by Sebastien Pierre, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""

import os, base64, bz2, string, re, time, random, crypt
import fabric, fabric.api, fabric.context_managers

# See <http://lethain.com/entry/2008/nov/04/deploying-django-with-fabric/>
# and <http://www.saltycrane.com/blog/2009/10/notes-python-fabric-09b1/>
# http://blog.markfeeney.com/2009/12/ec2-fabric-and-err-stdin-is-not-tty.html

VERSION = "0.0.3"
MODE = "user"
Expand Down

0 comments on commit f792ea4

Please sign in to comment.