Skip to content

Commit

Permalink
Fix: ctime indent python3
Browse files Browse the repository at this point in the history
  • Loading branch information
zack-vii committed Nov 19, 2018
1 parent 568a31b commit 0df6e3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tdi/python/ctime.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
def ctime(t):
"""
ctime - a function to translate c epoch based time into a local time string
"""
ctime - a function to translate c epoch based time into a local time string
arguments: t - a unix time since the epoch
"""
arguments: t - a unix time since the epoch
"""
import time
return time.ctime(t)

0 comments on commit 0df6e3d

Please sign in to comment.