Browse Source

Fix salt string conversion.

master
Ben Kurtovic 8 years ago
parent
commit
52ca728d7c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/kgrader/jail.rb

+ 1
- 1
lib/kgrader/jail.rb View File

@@ -12,7 +12,7 @@ module KGrader

def init
FileUtils.mkdir_p @root
@salt = rand 100000000
@salt = rand(100000000).to_s
end

def stage(source, target)


Loading…
Cancel
Save