~maas-committers/maas/trunk

« back to all changes in this revision

Viewing changes to src/maasserver/management/commands/dbshell.py

  • Committer: MAAS Lander
  • Author(s): Gavin Panella, Ricardo Bánffy, Blake Rouse
  • Date: 2015-12-04 21:16:18 UTC
  • mfrom: (4489.5.167 python3)
  • Revision ID: maas_lander-20151204211618-ynwsu2b3qchid1az
[r=rbanffy][bug=][author=allenap] Port MAAS to Python 3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
Overrides the default implementation.
7
7
"""
8
8
 
9
 
from __future__ import (
10
 
    absolute_import,
11
 
    print_function,
12
 
    unicode_literals,
13
 
    )
14
 
 
15
 
str = None
16
 
 
17
 
__metaclass__ = type
18
9
__all__ = ['Command']
19
10
 
20
11
from optparse import make_option