# HG changeset patch # User Goffi # Date 1600603540 -7200 # Node ID e86b71b1aa31dc0eaa7d1f7d70846fc7d649f6bd # Parent 90aee1f2d07c521195cf20ca78bf90dd223d7731 core: minor typos, docstring/comments update diff -r 90aee1f2d07c -r e86b71b1aa31 sat/plugins/plugin_merge_req_mercurial.py --- a/sat/plugins/plugin_merge_req_mercurial.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat/plugins/plugin_merge_req_mercurial.py Sun Sep 20 14:05:40 2020 +0200 @@ -1,7 +1,6 @@ #!/usr/bin/env python3 - -# SàT plugin for import external blogs +# SàT plugin managing Mercurial VCS # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify diff -r 90aee1f2d07c -r e86b71b1aa31 sat/plugins/plugin_xep_0050.py --- a/sat/plugins/plugin_xep_0050.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat/plugins/plugin_xep_0050.py Sun Sep 20 14:05:40 2020 +0200 @@ -1,7 +1,6 @@ #!/usr/bin/env python3 - -# SAT plugin for Ad-Hoc Commands (XEP-0050) +# SàT plugin for Ad-Hoc Commands (XEP-0050) # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify diff -r 90aee1f2d07c -r e86b71b1aa31 sat/tools/common/async_process.py --- a/sat/tools/common/async_process.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat/tools/common/async_process.py Sun Sep 20 14:05:40 2020 +0200 @@ -99,7 +99,7 @@ """Create a new CommandProtocol and execute the given command. @param *args(unicode): command arguments - if cls.command is specified, it will be the path to the command to execture + if cls.command is specified, it will be the path to the command to execute otherwise, first argument must be the path @param **kwargs: can be: - stdin(unicode, None): data to push to standard input diff -r 90aee1f2d07c -r e86b71b1aa31 sat/tools/common/files_utils.py --- a/sat/tools/common/files_utils.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat/tools/common/files_utils.py Sun Sep 20 14:05:40 2020 +0200 @@ -1,7 +1,6 @@ #!/usr/bin/env python3 - -# SAT: a jabber client +# SaT: an XMPP client # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify diff -r 90aee1f2d07c -r e86b71b1aa31 sat/tools/utils.py --- a/sat/tools/utils.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat/tools/utils.py Sun Sep 20 14:05:40 2020 +0200 @@ -1,7 +1,6 @@ #!/usr/bin/env python3 - -# SAT: a jabber client +# SaT: an XMPP client # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org) # This program is free software: you can redistribute it and/or modify diff -r 90aee1f2d07c -r e86b71b1aa31 sat_frontends/jp/cmd_adhoc.py --- a/sat_frontends/jp/cmd_adhoc.py Sun Sep 20 14:04:22 2020 +0200 +++ b/sat_frontends/jp/cmd_adhoc.py Sun Sep 20 14:05:40 2020 +0200 @@ -163,7 +163,7 @@ class List(base.CommandBase): - """Run an Ad-Hoc command""" + """List Ad-Hoc commands available on a service""" def __init__(self, host): super(List, self).__init__( @@ -175,7 +175,7 @@ "-j", "--jid", default="", - help=_("jid of the service (default: profile's server"), + help=_("jid of the service (default: profile's server)"), ) async def start(self):