summaryrefslogtreecommitdiff
path: root/wintest
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-03-28 12:27:33 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-03-29 00:00:22 +0200
commit22cbd04fd7d51cbb1f8617a51759f6cad166985b (patch)
treeb1d1a565090d9d66fb1f0ab0d53c000f03d44539 /wintest
parentb85bb3e3861ec147991880ea7ea08216553f967e (diff)
downloadsamba-22cbd04fd7d51cbb1f8617a51759f6cad166985b.tar.gz
wintest: fixed syntax highlighting with emacs
Diffstat (limited to 'wintest')
-rw-r--r--wintest/wintest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py
index d10d0ad2ff2..2a6da7d6567 100644
--- a/wintest/wintest.py
+++ b/wintest/wintest.py
@@ -563,7 +563,7 @@ options {
return True
def set_noexpire(self, child, username):
- '''Ensure this user's password does not expire'''
+ """Ensure this user's password does not expire"""
child.sendline('wmic useraccount where name="%s" set PasswordExpires=FALSE' % username)
child.expect("update successful")
child.expect("C:")