diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-11-10 13:37:46 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-11-11 09:12:25 +0100 |
commit | 0a29e552cb29cadbb75e64d8cc1278891132a7b0 (patch) | |
tree | 9601446010dfe8d158af2ae24588825fbe85fc26 /source4/scripting/devel | |
parent | ed1ca1c49e10c9f97aa1334f9aedf631352d144c (diff) | |
download | samba-0a29e552cb29cadbb75e64d8cc1278891132a7b0.tar.gz samba-0a29e552cb29cadbb75e64d8cc1278891132a7b0.tar.bz2 samba-0a29e552cb29cadbb75e64d8cc1278891132a7b0.zip |
s4:speedtest.py - fix script name in the help text
Diffstat (limited to 'source4/scripting/devel')
-rwxr-xr-x | source4/scripting/devel/speedtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/devel/speedtest.py b/source4/scripting/devel/speedtest.py index da19a555b7..e579e3eb2e 100755 --- a/source4/scripting/devel/speedtest.py +++ b/source4/scripting/devel/speedtest.py @@ -29,8 +29,8 @@ from decimal import Decimal sys.path.append("bin/python") import samba -samba.ensure_external_module("subunit", "subunit/python") samba.ensure_external_module("testtools", "testtools") +samba.ensure_external_module("subunit", "subunit/python") import samba.getopt as options @@ -48,7 +48,7 @@ import samba.tests from subunit.run import SubunitTestRunner import unittest -parser = optparse.OptionParser("speedtest [options] <host>") +parser = optparse.OptionParser("speedtest.py [options] <host>") sambaopts = options.SambaOptions(parser) parser.add_option_group(sambaopts) parser.add_option_group(options.VersionOptions(parser)) |