diff --git a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala
index e7659f04471ffc6e27a0a4ab5fb4e52f433c637f..2092ea7324cb62997debf195189169744de26281 100644
--- a/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala
+++ b/public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/workaround/BiopetQCommandLine.scala
@@ -300,7 +300,7 @@ class BiopetQCommandLine extends CommandLineProgram with Logging {
   }
 
   private def getQueueVersion: String = {
-    val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText")
+    val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText", this.getClass)
 
     if (stingResources.containsKey("org.broadinstitute.sting.queue.QueueVersion.version")) {
       stingResources.getString("org.broadinstitute.sting.queue.QueueVersion.version")
@@ -310,7 +310,7 @@ class BiopetQCommandLine extends CommandLineProgram with Logging {
   }
 
   private def getBuildTimestamp: String = {
-    val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText")
+    val stingResources: ResourceBundle = TextFormattingUtils.loadResourceBundle("StingText", this.getClass)
 
     if (stingResources.containsKey("build.timestamp")) {
       stingResources.getString("build.timestamp")