mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Remove unnecessary parens
This commit is contained in:
parent
c4c9fd48fc
commit
5eab79995a
@ -79,7 +79,7 @@ def _find_utmp():
|
||||
'''
|
||||
result = {}
|
||||
# These are the likely locations for the file on Ubuntu
|
||||
for utmp in ('/var/run/utmp', '/run/utmp'):
|
||||
for utmp in '/var/run/utmp', '/run/utmp':
|
||||
try:
|
||||
result[os.stat(utmp).st_mtime] = utmp
|
||||
except Exception:
|
||||
|
Loading…
Reference in New Issue
Block a user