Remove unnecessary parens

This commit is contained in:
Mike Place 2015-02-10 15:57:07 -07:00
parent c4c9fd48fc
commit 5eab79995a

View File

@ -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: