Tim Tisdall

Results 59 comments of Tim Tisdall

It seems this may be answered by a previous message I sent: https://github.com/mwarkentin/django-watchman/issues/77#issuecomment-215173249

Looking a little more into this... I made the following changes in settings: ```python LOGGING = { # ... [SNIP] 'loggers': { # ... [SNIP] 'watchman': { 'handlers': ['console'], 'propagate':...

I was trying to use this to remove a package without touching anything else. It seems like `uninstall --keep-outdated` does remove the installed package from the virtualenv and also removes...

Not sure if this helps but I think `'+19450000000'` is seen as invalid due to the `'0000000'`. ```ruby irb(main):010:0> Phonelib.parse('+19450000000', 'US').valid_for_country?('US') => false irb(main):012:0> Phonelib.parse('+19452000000', 'US').valid_for_country?('US') => true ``` The...

okay, from exceptions it seems it only accepts integer values... I guess I should have known that from looking at the C code too.

Travis shut off their free tier for open source projects Dec 31, 2020, so unfortunately it's no longer running.

well... in case anyone else is stuck on this and is okay with 16 bytes of hash or less... ```ruby require 'openssl' shake128 = OpenSSL::Digest.new('SHAKE128') digest = shake128.digest('some data') ```

If you want to use this without using the admin then take a look at #6. That solved my issue.

As @jgbishop pointed out, the faulkner patch only fixes the direct requests and the AJAX requests in the panel no longer work. Here's a patch that worked for me: replace:...