4 Commits

Author SHA1 Message Date
Thomas Waldmann
f4e320aace add ugly workaround for crash in django-admin users --stale-check
i tried repr(user), but somehow this did not help.

Traceback (most recent call last):
  File "/srv/nsupdate.info/env/bin/django-admin.py", line 5, in <module>
    management.execute_from_command_line()
  File "/srv/nsupdate.info/env/lib/python3.5/site-packages/django/core/management/__init__.py", line 364, in execute_from_command_line
    utility.execute()
  File "/srv/nsupdate.info/env/lib/python3.5/site-packages/django/core/management/__init__.py", line 356, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/srv/nsupdate.info/env/lib/python3.5/site-packages/django/core/management/base.py", line 283, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/srv/nsupdate.info/env/lib/python3.5/site-packages/django/core/management/base.py", line 330, in execute
    output = self.handle(*args, **options)
  File "/srv/nsupdate.info/repo/nsupdate/management/commands/users.py", line 85, in handle
    self.stdout.write(log_msg)
  File "/srv/nsupdate.info/env/lib/python3.5/site-packages/django/core/management/base.py", line 110, in write
    self._out.write(force_str(style_func(msg)))
UnicodeEncodeError: 'ascii' codec can't encode characters in position 1-2: ordinal not in range(128)
2018-10-14 15:16:28 +02:00
Thomas Waldmann
92211b0402 django-admin.py users: avoid unicode issues by using %r, fixes #350
non-ascii user names crashed the log output.
2018-10-01 15:52:49 +02:00
Thomas Waldmann
80590a646b django-admin.py users: initialize log_msg 2018-10-01 15:50:48 +02:00
Thomas Waldmann
b62fa0454d implement django-admin users --stale-check
deletes users who have not logged in for >= 1y and
have no hosts and domains.
2018-04-20 10:29:17 +02:00