Correcting travis issues

This commit is contained in:
felipecode 2018-01-17 14:12:56 +01:00
parent bad04d82da
commit d481a5f3ba
3 changed files with 2 additions and 4 deletions

View File

@ -7,7 +7,7 @@
# For a copy, see <https://opensource.org/licenses/MIT>.
from builtins import input_data
from builtins import input as input_data
import csv
import datetime
@ -269,7 +269,7 @@ class Benchmark(object):
# Make a date file: to show when this was modified,
# the number of times the experiments were run
now = datetime.datetime.now()
open(os.path.join(full_name, now.strftime("%Y%m%d%H%M"))).close()
open(os.path.join(full_name, now.strftime("%Y%m%d%H%M")),'w').close()
return suffix_name, full_name

View File

@ -9,7 +9,6 @@
from __future__ import print_function
import os
import datetime
from .benchmark import Benchmark
from .experiment import Experiment

View File

@ -8,7 +8,6 @@
import argparse
import logging
import sys
import time
from carla.benchmarks.agent import Agent