Skip to content

Commit

Permalink
Fixed 'warning()' in emdn-tap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Sep 23, 2014
1 parent 024c518 commit 1c92f55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emdn-tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def warning(*args, **kwargs):

import datetime
now = datetime.datetime.now().strftime('%Y-%m-%dT%H:%M:%S')
warning(now, *args, file=warningFh, **kwargs)
print(now, *args, file=warningFh, **kwargs)
if warning.verbose:
print('#', *args, **kwargs)

Expand Down

0 comments on commit 1c92f55

Please sign in to comment.