Projects STRLCPY PCredz Commits 279398a0
🤬
  • Fix HTTP NTLM type 3 output

    Trying to print a tuple lead to "not all arguments converted during string formatting" error:
    ```Python 2.7.16
    >>> a = 1,2
    >>> print "%s"%a
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    TypeError: not all arguments converted during string formatting
    ```
    
    Fix this by adding missing [0]
  • Loading...
  • Quentin Lemaire committed with GitHub 5 years ago
    279398a0
    1 parent c8bca9d3
  • ■ ■ ■ ■
    Pcredz
    skipped 584 lines
    585 585   if PrintPacket(Filename,Message[1]):
    586 586   l.warning(HeadMessage)
    587 587   l.warning(Message[0])
    588  - print HeadMessage+'\n'+Message
     588 + print HeadMessage+'\n'+Message[0]
    589 589   except:
    590 590   pass
    591 591   
    skipped 167 lines
Please wait...
Page is in error, reload to recover