Skip to content

Commit

Permalink
Cleaned up some naming schemes.
Browse files Browse the repository at this point in the history
  • Loading branch information
LexiconCode committed Jan 29, 2019
1 parent 0712a35 commit 05f1b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions caster/lib/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TerminalCommand(RunCommand):
Example
class PingLocalHost(TerminalCommand):
command = "ping localhost"
trusted = True #
trusted = True
Ping().execute()
'''
trusted = False
Expand All @@ -27,7 +27,7 @@ def execute(self, data=None):
else:
return ConfirmAction(
Function(lambda: RunCommand.execute(self, data)),
rdescript="CasterRunCommand: Confirm Action '%s'?" % self.command,
rdescript="CasterTerminalCommand: Confirm Action '%s'?" % self.command,
instructions="Run command '%s'?" % self.command
).execute(data)

0 comments on commit 05f1b6e

Please sign in to comment.