Skip to content

Commit

Permalink
Move server.py to support/server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rwols committed Aug 26, 2017
1 parent d5f8ce0 commit fdb762f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion commands/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sublime
import os
import pickle
from ..server import Server
from ..support.server import Server
from ..support import capabilities
from ..support import get_setting

Expand Down
6 changes: 3 additions & 3 deletions server.py → support/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
import os
import threading
import shutil
from .support.headerdb import make_headerdb
from .support.db.json import JSONCompilationDatabase
from .support.models import CompileCommand
from .headerdb import make_headerdb
from .db.json import JSONCompilationDatabase
from .models import CompileCommand


class Target(object):
Expand Down

0 comments on commit fdb762f

Please sign in to comment.