~techalchemy/mojo/python3-fixes

« back to all changes in this revision

Viewing changes to mojo/workspace.py

  • Committer: Dan Ryan
  • Date: 2020-02-03 23:44:35 UTC
  • mfrom: (514.2.10 mojo)
  • Revision ID: dan.ryan@canonical.com-20200203234435-294dc1iv5frgv7ep
* [mthaddon] If series is focal, juju deploy needs --force option
* [mthaddon] Deal with charm lines that include quotes for charmstore locations
* [mthaddon] Disable debug-logs by default - tends to simply clutter logs
* [mthaddon] Update supported series for PPAs and remove need to create MOJO_ROOT
* [mthaddon] Only check for charm repo if we're using non-Charmstore charms

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from __future__ import absolute_import
 
1
from __future__ import absolute_import, division, print_function
2
2
import logging
3
3
import os
4
4
import shutil
5
 
from mojo.exceptions import ArgumentError
6
 
from mojo.spec import Spec
 
5
from .exceptions import ArgumentError
 
6
from .spec import Spec
7
7
 
8
8
 
9
9
class NoSuchWorkspaceError(Exception):