Completed
Pull Request — master (#346)
by Anthony
04:32
created

host_and_date()   A

Complexity

Conditions 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 4
rs 10
1
from fabric.api import *
2
3
@task
4
def multiecho(sayit,count):
5
  for i in range(0,int(count)):
6
    local("echo %s" % sayit)
7
8
9
@task
10
def host_and_date():
11
  local("hostname")
12
  local("date")
13