PEP8: fix E226: missing whitespace around arithmetic operator
[sfrench/samba-autobuild/.git] / python / samba / tests / py_credentials.py
index 5737d89c9483beeadd5d80cf93b269d1960b5c8d..1678cecdba38a8592f8ad18ba85a511362dcd6f4 100644 (file)
@@ -234,7 +234,7 @@ class PyCredentialsTests(TestCase):
         newpass = samba.generate_random_password(PWD_LEN, PWD_LEN)
         encoded = newpass.encode('utf-16-le')
         pwd_len = len(encoded)
-        filler  = [ord(x) for x in os.urandom(DATA_LEN-pwd_len)]
+        filler  = [ord(x) for x in os.urandom(DATA_LEN - pwd_len)]
         pwd = netlogon.netr_CryptPassword()
         pwd.length = pwd_len
         pwd.data = filler + [ord(x) for x in encoded]