summaryrefslogtreecommitdiffstats
path: root/crates/rebel-runner/src/util/fs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/rebel-runner/src/util/fs.rs')
-rw-r--r--crates/rebel-runner/src/util/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rebel-runner/src/util/fs.rs b/crates/rebel-runner/src/util/fs.rs
index 5efd159..9e33eb7 100644
--- a/crates/rebel-runner/src/util/fs.rs
+++ b/crates/rebel-runner/src/util/fs.rs
@@ -11,7 +11,7 @@ use nix::{
unistd,
};
-use common::error::*;
+use rebel_common::error::*;
pub fn open<P: AsRef<Path>>(path: P) -> Result<fs::File> {
fs::File::open(path.as_ref())