summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdiff.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff.cgi b/diff.cgi
index 4409a13..9b44343 100755
--- a/diff.cgi
+++ b/diff.cgi
@@ -17,5 +17,5 @@ if not sch.valid_fname(fname[0]) or not sch.valid_fname(fname[1]):
sch.error("Fuck off!")
sch.print_header("Differences between '%s' and '%s'" % (fname[0], fname[1]))
-sch.run_proc('$s --diff "%s/%s" "%s/%s"' % (sch.syrep_binary, sch.repository_directory, fname[0], sch.repository_directory, fname[1]))
+sch.run_proc('%s --diff "%s/%s" "%s/%s"' % (sch.syrep_binary, sch.repository_directory, fname[0], sch.repository_directory, fname[1]))
sch.print_footer()