clear_cc_transaction_log.py

<---Back

Select Code Highlighting Style:

Bright | Seashell | DARKNESS

Select Font Size:

Small | Normal | Large
../www/get_script_html_files/strip/clear_cc_transaction_log.py
    1 #!/usr/bin/python2
    2 
    3 #######################################
    4 #
    5 # This script clears file cc_transaction_log.txt
    6 #
    7 # Version: 1.1
    8 #
    9 #######################################
   10 
   11 import os
   12 
   13 os.system("echo '' > cc_transaction_log.txt")
   14