Skip to content

Commit 3af91d4

Browse files
change agent module
1 parent cbe170f commit 3af91d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/djls/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async fn main() -> Result<ExitCode> {
4646
let cli = Cli::parse();
4747
match cli.command {
4848
Command::Serve(_serve) => {
49-
let python = PythonProcess::new::<Vec<&OsStr>, &OsStr>("djls.agent", None, None)?;
49+
let python = PythonProcess::new::<Vec<&OsStr>, &OsStr>("djls_agent", None, None)?;
5050
djls_server::serve(python).await?
5151
}
5252
}

packages/djls-agent/src/djls_agent/agent.py renamed to packages/djls-agent/src/djls_agent/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def create_error(
105105

106106

107107
async def main() -> None:
108-
logger.debug("Starting DJLS...")
108+
logger.debug("Starting djls-agent...")
109109

110110
try:
111111
logger.debug("Initializing LSPAgent...")

0 commit comments

Comments
 (0)