Skip to content
This repository has been archived by the owner on Feb 13, 2020. It is now read-only.

Commit

Permalink
cast config value to string
Browse files Browse the repository at this point in the history
  • Loading branch information
jsingle committed Sep 2, 2015
1 parent ba8a657 commit e3b831b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dusty/systems/virtualbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _init_docker_vm():
logging.info('Initializing new Dusty VM with Docker Machine')
machine_options = ['--driver', 'virtualbox',
'--virtualbox-cpu-count', '-1',
'--virtualbox-memory', get_config_value(constants.CONFIG_VM_MEM_SIZE)]
'--virtualbox-memory', str(get_config_value(constants.CONFIG_VM_MEM_SIZE))]
check_call_demoted(['docker-machine', 'create'] + machine_options + [constants.VM_MACHINE_NAME],
redirect_stderr=True)

Expand Down

0 comments on commit e3b831b

Please sign in to comment.