Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# coding: utf-8

import os
from fabric.api import env, local, cd, run, sudo
from fabric.api import env, local, cd, run
from fabric.operations import put

env.user = 'www'
Expand Down
2 changes: 1 addition & 1 deletion june/htmlcompress.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
import re
from jinja2.ext import Extension
from jinja2.lexer import Token, describe_token
from jinja2.lexer import Token
from jinja2 import TemplateSyntaxError


Expand Down
1 change: 0 additions & 1 deletion june/tasks/mail.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# coding: utf-8

from flask import Flask
from flask import current_app, url_for, render_template
from flask.ext.babel import gettext as _
from flask_mail import Message
Expand Down
3 changes: 1 addition & 2 deletions manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

import os
import sys
import argparse
from flask_script import Manager, Command
from flask_script import Manager
from june.app import create_app


Expand Down