Skip to content

Commit

Permalink
Fixed wrong file name.
Browse files Browse the repository at this point in the history
  • Loading branch information
yurivict committed May 17, 2015
1 parent 8dade7e commit 5544da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def tm_log():
return datetime.datetime.now().strftime('[%Y-%m-%d %H:%M:%S %Z]')

def mk_file_rw(fname):
fh = os.open ("qq1.junk", os.O_CREAT, 0600)
fh = os.open (fname, os.O_CREAT, 0600)
os.close(fh)

def drop_privileges3(uid_name, gid_name, files):
Expand Down

0 comments on commit 5544da3

Please sign in to comment.