Skip to content

Commit

Permalink
format statement fix
Browse files Browse the repository at this point in the history
  • Loading branch information
secynic committed Apr 8, 2017
1 parent 75969cd commit fb509ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nfsinkhole/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def create_service(self):
fp = sys.executable

# Raise error if rsyslogd is not found
if not os.path.exists('{0}/nfsinkhole-service.py').format(fp):
if not os.path.exists('{0}/nfsinkhole-service.py'.format(fp)):

if os.path.exists('/usr/local/bin/nfsinkhole-service.py'):

Expand Down

0 comments on commit fb509ce

Please sign in to comment.