Skip to content

Commit

Permalink
use correct property
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotra5 committed Feb 6, 2025
1 parent 675d0d8 commit 4e02e3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openhands/runtime/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ async def _handle_action(self, event: Action) -> None:
assert event.timeout is not None
try:
if isinstance(event, CmdRunAction):
print('found event action', event.action)
if '$GITHUB_TOKEN' in event.action:
print('token required by action', event.action)
print('found event action', event.command)
if '$GITHUB_TOKEN' in event.command:
print('token required by action', event.command)
await call_sync_from_async(
self.run,
CmdRunAction(
Expand Down

0 comments on commit 4e02e3b

Please sign in to comment.