Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-03-10 20:35:06 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2020-03-10 20:35:06 +0300
commit267a946337ace87138d4d950d9ca902a703a82d8 (patch)
tree04796ad559cc1d1fdfe110ec9354eddd269636b1 /calm/irk.py
parent44c3b473d6365332a6a388f9c6da94e30e9c7dea (diff)
Fix irker test not to include argv[0] in the message
Diffstat (limited to 'calm/irk.py')
-rwxr-xr-xcalm/irk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/calm/irk.py b/calm/irk.py
index 548ed9f..0037a33 100755
--- a/calm/irk.py
+++ b/calm/irk.py
@@ -39,7 +39,7 @@ def irk(message, target=DEFAULT_TARGET, server=DEFAULT_SERVER):
def main():
- message = " ".join(sys.argv[:])
+ message = " ".join(sys.argv[1:])
try:
irk(message)